# HG changeset patch
# User Darren Salt <[EMAIL PROTECTED]>
# Date 1171661450 0
# Node ID 227555c4e421c4664d58da434b5ad4b123e7ae24
# Parent  469d762ec1091dfbb425613a8e4578788bd0d674
Bug fix: full-screen focus grabbing could be active despite Xinerama.

diff -r 227555c4e421c4664d58da434b5ad4b123e7ae24 -r 
469d762ec1091dfbb425613a8e4578788bd0d674 ChangeLog
--- a/ChangeLog Fri Feb 16 21:30:50 2007 +0000
+++ b/ChangeLog Fri Feb 16 21:28:08 2007 +0000
@@ -46,6 +46,8 @@ 0.5.900:2007/??/??
        * Fixed toolbar positioning with multiple monitors arranged to make a
          non-rectangular display. (This may require the enabling of an option
          such as radeon(4)'s "MergedNonRectangular" option.)
+       * Fixed a logic error which could cause full-screen focus grabbing to
+         be active even when Xinerama is active.
 
 0.5.11:        2007/02/01
        [dsalt]
diff -r 227555c4e421c4664d58da434b5ad4b123e7ae24 -r 
469d762ec1091dfbb425613a8e4578788bd0d674 src/noskin_window.c
--- a/src/noskin_window.c       Fri Feb 16 21:30:50 2007 +0000
+++ b/src/noskin_window.c       Fri Feb 16 21:28:08 2007 +0000
@@ -632,7 +632,7 @@ xevent_filter_cb (GdkXEvent *gx, GdkEven
       XGetInputFocus (xd, &fw, &fr);
       GdkWindow *gw = gdk_window_lookup (fw);
 #ifdef HAVE_XINERAMA
-      if (gw == fs_toolbar->window || (!gw && !XineramaIsActive (xd)))
+      if (gw ? gw == fs_toolbar->window : !XineramaIsActive (xd))
 #else
       if (!gw || gw == fs_toolbar->window)
 #endif

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Xine-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xine-cvslog

Reply via email to