From 2e90c1dffcacdc62d263e994b2a87a8afa1afeed Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 16 Mar 2004 05:16:58 +0000 Subject: Don't mess with the window position in xinerama when -geometry changes it. (Attila Kinali) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12033 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/x11_common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libvo/x11_common.c') diff --git a/libvo/x11_common.c b/libvo/x11_common.c index e7355cf4b5..20f7c16115 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -17,6 +17,7 @@ #include "video_out.h" #include "aspect.h" +#include "geometry.h" #include "help_mp.h" #include "../osdep/timer.h" @@ -1313,7 +1314,7 @@ void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask) #ifdef HAVE_XINERAMA void vo_x11_xinerama_move(Display *dsp, Window w) { - if(XineramaIsActive(dsp)) + if(XineramaIsActive(dsp) && ! geometry_xy_changed) { /* printf("XXXX Xinerama screen: x: %hd y: %hd\n",xinerama_x,xinerama_y); */ XMoveWindow(dsp,w,xinerama_x,xinerama_y); -- cgit v1.2.3