[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53798] trunk/blender/intern/ghost/intern/ GHOST_SystemX11.cpp: fix [#33831] "Alt" key is "Alt Window Deactivated"

Campbell Barton ideasman42 at gmail.com
Mon Jan 14 21:04:41 CET 2013


Revision: 53798
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53798
Author:   campbellbarton
Date:     2013-01-14 20:04:36 +0000 (Mon, 14 Jan 2013)
Log Message:
-----------
fix [#33831] "Alt" key is "Alt Window Deactivated"
Patch from Patrick Zulke (pazul)

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_SystemX11.cpp

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemX11.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemX11.cpp	2013-01-14 19:46:30 UTC (rev 53797)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemX11.cpp	2013-01-14 20:04:36 UTC (rev 53798)
@@ -785,6 +785,11 @@
 		
 			/* May have to look at the type of event and filter some out. */
 
+			if (xfe.detail != NotifyNonlinear) {
+				/* Needed for Ubuntu-Unity, see bug [#33831]  */
+				break;
+			}
+
 			GHOST_TEventType gtype = (xfe.type == FocusIn) ? 
 			                         GHOST_kEventWindowActivate : GHOST_kEventWindowDeactivate;
 




More information about the Bf-blender-cvs mailing list