a fix in the demo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8902 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2000-12-11 02:55:03 +00:00
parent 2cd2fac87f
commit d3f175108b

View 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):