[MPlayer-cvslog] r30514 - trunk/libvo/x11_common.c
reimar
subversion at mplayerhq.hu
Fri Feb 5 17:42:14 CET 2010
Author: reimar
Date: Fri Feb 5 17:42:13 2010
New Revision: 30514
Log:
Fix hang with -fixed-vo due to VOFLAG_HIDDEN never being removed from window_state.
Modified:
trunk/libvo/x11_common.c
Modified: trunk/libvo/x11_common.c
==============================================================================
--- trunk/libvo/x11_common.c Fri Feb 5 17:09:03 2010 (r30513)
+++ trunk/libvo/x11_common.c Fri Feb 5 17:42:13 2010 (r30514)
@@ -1115,6 +1115,7 @@ void vo_x11_create_vo_window(XVisualInfo
if (window_state & VOFLAG_HIDDEN) {
XSizeHints hint;
XEvent xev;
+ window_state &= ~VOFLAG_HIDDEN;
vo_x11_classhint(mDisplay, vo_window, classname);
XStoreName(mDisplay, vo_window, title);
vo_hidecursor(mDisplay, vo_window);
More information about the MPlayer-cvslog
mailing list