Removed Alt or Ctrl hack

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2001-12-13 18:53:47 +00:00
parent 71f1334b40
commit 9a3ba92945

View File

@ -304,9 +304,6 @@ class Shell(wxStyledTextCtrl):
command = self.GetTextRange(stoppos, currpos) + '('
self.write('(')
if self.autoCallTip: self.autoCallTipShow(command)
# Hack to keep characters from entering when Alt or Control are down.
elif event.ControlDown() or event.AltDown():
pass
else:
# Allow the normal event handling to take place.
event.Skip()