X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0ab3f7fbbecf490e197dc345beea8d1f7c8418c..590f50d6cca57bbbec7e0dff8a94a4ea562f087f:/wxPython/wx/py/shell.py diff --git a/wxPython/wx/py/shell.py b/wxPython/wx/py/shell.py index e45ff175ee..de8c88c90c 100644 --- a/wxPython/wx/py/shell.py +++ b/wxPython/wx/py/shell.py @@ -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')