# HG changeset patch # User reimar # Date 1265388133 0 # Node ID ddce1a6f3c595c75ae012b5a7b80b8ccda09dcae # Parent ef00ce26e9b51545f7d103f0685c25872a9a1dd9 Fix hang with -fixed-vo due to VOFLAG_HIDDEN never being removed from window_state. diff -r ef00ce26e9b5 -r ddce1a6f3c59 libvo/x11_common.c --- a/libvo/x11_common.c Fri Feb 05 16:09:03 2010 +0000 +++ b/libvo/x11_common.c Fri Feb 05 16:42:13 2010 +0000 @@ -1115,6 +1115,7 @@ 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);