]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridCustEditor.py
Local event array wasn't initialized
[wxWidgets.git] / wxPython / demo / GridCustEditor.py
index f90ea1f2f5ced8a9bc0977bd3fa68e1d36c143da..668dbdc4282470d20d9f2333ee601bb082568864 100644 (file)
@@ -124,7 +124,8 @@ class MyCellEditor(wxPyGridCellEditor):
         ## Oops, there's a bug here, we'll have to do it ourself..
         ##return self.base_IsAcceptedKey(evt)
 
-        return not evt.HasModifiers() and evt.GetKeyCode() != WXK_SHIFT
+        return (not (evt.ControlDown() or evt.AltDown()) and
+                evt.GetKeyCode() != WXK_SHIFT)
 
 
     def StartingKey(self, evt):