From fb81f63fe32b62a2aa3c02131ec2d4d0faef866b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 15 Dec 2016 21:00:59 +1000 Subject: [PATCH] work around broken debug console shortcut this will likely break the shortcut on keyboards where : is not a shifted ;. can revert when qt fixes the issue --- aqt/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/main.py b/aqt/main.py index 438e286ec..f3e5ead87 100644 --- a/aqt/main.py +++ b/aqt/main.py @@ -611,7 +611,7 @@ title="%s" %s>%s''' % ( def setupKeys(self): self.keyHandler = None # debug shortcut - self.debugShortcut = QShortcut(QKeySequence("Ctrl+:"), self) + self.debugShortcut = QShortcut(QKeySequence("Ctrl+Shift+;"), self) self.debugShortcut.activated.connect(self.onDebug) def keyPressEvent(self, evt):