Author: johannes
Date: 2007-01-09 04:08:39 -0600 (Tue, 09 Jan 2007)
New Revision: 9236
Modified:
trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
Log:
Pass the NEXTENTRY to GFForm on GTK
Modified: trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py 2007-01-09
09:54:29 UTC (rev 9235)
+++ trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py 2007-01-09
10:08:39 UTC (rev 9236)
@@ -355,7 +355,12 @@
keycode = event.GetKeyCode()
command = None
- if keycode in [wx.WXK_RETURN]:
+
+ allowed = [wx.WXK_RETURN]
+ if 'wxGTK' in wx.PlatformInfo:
+ allowed.append(wx.WXK_TAB)
+
+ if keycode in allowed:
(command, args) = GFKeyMapper.KeyMapper.getEvent (keycode,
event.ShiftDown(),
event.CmdDown(),
_______________________________________________
commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue