commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r5839 - trunk/gnue-forms/src/uidrivers/wx


From: btami
Subject: r5839 - trunk/gnue-forms/src/uidrivers/wx
Date: Thu, 27 May 2004 15:54:42 -0500 (CDT)

Author: btami
Date: 2004-05-27 15:54:41 -0500 (Thu, 27 May 2004)
New Revision: 5839

Modified:
   trunk/gnue-forms/src/uidrivers/wx/common.py
Log:
fixed GFButton instance has no attribute 'style' bug

Modified: trunk/gnue-forms/src/uidrivers/wx/common.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx/common.py 2004-05-27 20:35:30 UTC (rev 
5838)
+++ trunk/gnue-forms/src/uidrivers/wx/common.py 2004-05-27 20:54:41 UTC (rev 
5839)
@@ -241,7 +241,7 @@
                      code=10)
 
     # let listbox handle Space,PgUp,PgDn,Up,Down keys
-    elif object.style == 'listbox' and object._type == 'GFEntry' and (keycode 
in (32,312,313,317,319)):
+    elif object._type == 'GFEntry' and object.style == 'listbox' and (keycode 
in (32,312,313,317,319)):
         event.Skip()
 
     elif command:





reply via email to

[Prev in Thread] Current Thread [Next in Thread]