]> git.saurik.com Git - wxWidgets.git/commitdiff
no longer need to lowercase the input ourselves
authorRobin Dunn <robin@alldunn.com>
Sun, 29 Jan 2006 01:36:59 +0000 (01:36 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 29 Jan 2006 01:36:59 +0000 (01:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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.