From e08139aebae1060e35783748967a72dd01b27850 Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 24 Apr 2002 23:10:41 +0000 Subject: -rootwin fixed, keys work, mouse doesn't git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5823 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_x11.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libvo/vo_x11.c') diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c index 32ef9609ce..aae5163b9d 100644 --- a/libvo/vo_x11.c +++ b/libvo/vo_x11.c @@ -353,6 +353,7 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t #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 ); @@ -360,7 +361,9 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t XSync( mDisplay,False ); vo_gc=XCreateGC( mDisplay,vo_window,0L,&xgcv ); - XSelectInput( mDisplay,vo_window,StructureNotifyMask | KeyPressMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask); + // we cannot grab mouse events on root window :( + XSelectInput( mDisplay,vo_window,StructureNotifyMask | KeyPressMask | + ((WinID==0)?0:(ButtonPressMask | ButtonReleaseMask | PointerMotionMask)) ); #ifdef HAVE_XF86VM if ( vm ) -- cgit v1.2.3