mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
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
This commit is contained in:
parent
9b6a21126d
commit
fb81f63fe3
1 changed files with 1 additions and 1 deletions
|
@ -611,7 +611,7 @@ title="%s" %s>%s</button>''' % (
|
|||
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):
|
||||
|
|
Loading…
Reference in a new issue