Treat Ctrl-Shift-Backspace the same as ESC in the shell.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37634 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-18 21:41:10 +00:00
parent c32253089b
commit 1ad0de842d

View File

@@ -541,6 +541,10 @@ Platform: %s""" % \
else:
self.clearCommand()
# Clear the current command
elif key == wx.WXK_BACK and controlDown and shiftDown:
self.clearCommand()
# Increase font size.
elif controlDown and key in (ord(']'), wx.WXK_NUMPAD_ADD):
dispatcher.send(signal='FontIncrease')