From 7151c375c4a07b97d39ee55cf85f63325499063a Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 9 May 2002 00:45:36 +0000 Subject: [PATCH] some reorder git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6026 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_x11.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c index 7b2b25768e..7f89d21448 100644 --- a/libvo/vo_x11.c +++ b/libvo/vo_x11.c @@ -313,7 +313,7 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t hint.width=modeline_width; hint.height=modeline_height; } - else +// else #endif // if ( fullscreen ) // { @@ -359,17 +359,11 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t XSelectInput( mDisplay,vo_window,StructureNotifyMask ); XSetStandardProperties( mDisplay,vo_window,title,title,None,NULL,0,&hint ); XMapWindow( mDisplay,vo_window ); - if ( fullscreen ) vo_x11_fullscreen(); -#ifdef HAVE_XINERAMA - vo_x11_xinerama_move(mDisplay,vo_window); -#endif if(WinID!=0) do { XNextEvent( mDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != vo_window ); XSelectInput( mDisplay,vo_window,NoEventMask ); - XFlush( mDisplay ); XSync( mDisplay,False ); - vo_gc=XCreateGC( mDisplay,vo_window,0L,&xgcv ); // we cannot grab mouse events on root window :( XSelectInput( mDisplay,vo_window,StructureNotifyMask | KeyPressMask | PropertyChangeMask | @@ -387,6 +381,12 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t #endif } + if ( fullscreen ) vo_x11_fullscreen(); +#ifdef HAVE_XINERAMA + vo_x11_xinerama_move(mDisplay,vo_window); +#endif + + vo_gc=XCreateGC( mDisplay,vo_window,0L,&xgcv ); getMyXImage(); switch ((bpp=myximage->bits_per_pixel)){