From bceffd96c684df3c63fefe597d3539fca4df6cde Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Mon, 24 Jul 2023 02:31:41 +0100 Subject: [PATCH] Add keyboard shortcut for legacy stats (#2583) * Added: Shortcut for legacy stats * Added: Name to contributors * Capitalize S --- CONTRIBUTORS | 1 + qt/aqt/main.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 48e989de6..47a7528be 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -130,6 +130,7 @@ mmjang <752515918@qq.com> shunlog 3ter Derek Dang +Luc Mcgrady Kehinde Adeleke ******************** diff --git a/qt/aqt/main.py b/qt/aqt/main.py index fba2ffd42..231a64860 100644 --- a/qt/aqt/main.py +++ b/qt/aqt/main.py @@ -1102,6 +1102,7 @@ title="{}" {}>{}""".format( ("a", self.onAddCard), ("b", self.onBrowse), ("t", self.onStats), + ("Shift+t", self.onStats), ("y", self.on_sync_button_clicked), ] self.applyShortcuts(globalShortcuts)