summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Isorce <julien.isorce@gmail.com>2014-05-02 05:57:00 +0100
committerJulien Isorce <julien.isorce@gmail.com>2014-05-02 06:03:23 +0100
commitcf509574be9ae8b441f1ea2eebad809d60a145f4 (patch)
tree5a707ca26a4062e14b6d5eb35eb472640689ba90
parent619e7be7489d0f7a65288e4f72ee3c798618a2a3 (diff)
gl: show internal cocoa window on top of others
Useful when your OSX terminal is fullscreen https://bugzilla.gnome.org/show_bug.cgi?id=728127
-rw-r--r--gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m b/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
index 795b4cff0..2de31d7f4 100644
--- a/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
+++ b/gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m
@@ -628,7 +628,7 @@ gst_gl_window_cocoa_send_message_async (GstGLWindow * window,
}
- (void) orderFront {
- [m_cocoa->priv->internal_win_id orderFront:m_cocoa->priv->internal_win_id];
+ [m_cocoa->priv->internal_win_id orderFrontRegardless];
}
@end