Author: johannes
Date: 2007-04-25 08:57:02 -0500 (Wed, 25 Apr 2007)
New Revision: 9514

Modified:
   trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
Log:
Do not pass wx.WXK_TAB to the OS but let GFTabStop handle it instead. This
makes Combos behave properly if used in a rows-table


Modified: trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py        2007-04-25 
08:48:01 UTC (rev 9513)
+++ trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py        2007-04-25 
13:57:02 UTC (rev 9514)
@@ -354,7 +354,7 @@
         command = None
 
         allowed = [wx.WXK_RETURN]
-        if 'wxGTK' in wx.PlatformInfo:
+        if 'wxGTK' in wx.PlatformInfo or 'wxMac' in wx.PlatformInfo:
             allowed.append(wx.WXK_TAB)
 
         if keycode in allowed:



_______________________________________________
commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue

Reply via email to