]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridCustEditor.py
GTK2: gtk_timeout_add -> g_timeout_add; gtk_timeout_remove -> g_source_remove.
[wxWidgets.git] / wxPython / demo / GridCustEditor.py
index 639b3fffebb1d0d079d60ec86bcdd041cec0f73b..444152cc4f143ea7715232941b1a07fa5c9efd70 100644 (file)
@@ -150,8 +150,6 @@ class MyCellEditor(gridlib.PyGridCellEditor):
 
         elif key < 256 and key >= 0 and chr(key) in string.printable:
             ch = chr(key)
-            if not evt.ShiftDown():
-                ch = ch.lower()
 
         if ch is not None:
             # For this example, replace the text.  Normally we would append it.