# HG changeset patch # User al # Date 1109267179 0 # Node ID 05eab20de47669b6972c1e0ca2555b2fde72c61f # Parent e98f3d37bc1cf11c59e93895400dedc6edd83206 Always use vo_x11_sizehint function ( even when going fullscreen ) to reflect at least the window aspect behaviour. diff -r e98f3d37bc1c -r 05eab20de476 libvo/vo_xv.c --- a/libvo/vo_xv.c Thu Feb 24 17:08:54 2005 +0000 +++ b/libvo/vo_xv.c Thu Feb 24 17:46:19 2005 +0000 @@ -329,7 +329,7 @@ ExposureMask))); XSetStandardProperties(mDisplay, vo_window, hello, hello, None, NULL, 0, &hint); - XSetWMNormalHints(mDisplay, vo_window, &hint); + vo_x11_sizehint(hint.x, hint.y, hint.width, hint.height, 0); XMapWindow(mDisplay, vo_window); if (flags & 1) vo_x11_fullscreen(); @@ -338,8 +338,6 @@ #ifdef HAVE_XINERAMA vo_x11_xinerama_move(mDisplay, vo_window); #endif - vo_x11_sizehint(hint.x, hint.y, hint.width, hint.height, - 0); } } else {