From 23891918cb648db4b4d47cdf3986fa98c8d956f0 Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Wed, 8 Sep 2021 21:26:48 -0300 Subject: [PATCH] Use Alt+i for previous/last card info because Ctrl+i could easily confuse a user that Ctrl+i is for the current card. Ctrl was first added because it is easier to press, at least for me, then, I press first using Ctrl and if not available go to Alt. --- qt/aqt/reviewer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/aqt/reviewer.py b/qt/aqt/reviewer.py index a0f3f6675..fd9b64eb2 100644 --- a/qt/aqt/reviewer.py +++ b/qt/aqt/reviewer.py @@ -457,7 +457,7 @@ class Reviewer: ("Shift+v", self.onRecordVoice), ("o", self.onOptions), ("i", self.on_card_info), - ("Ctrl+i", self.on_previous_card_info), + ("Alt+i", self.on_previous_card_info), ("1", lambda: self._answerCard(1)), ("2", lambda: self._answerCard(2)), ("3", lambda: self._answerCard(3)), @@ -910,7 +910,7 @@ time = %(time)d; [tr.actions_suspend_card(), "@", self.suspend_current_card], [tr.actions_options(), "O", self.onOptions], [tr.actions_card_info(), "I", self.on_card_info], - [tr.actions_previous_card_info(), "Ctrl+I", self.on_previous_card_info], + [tr.actions_previous_card_info(), "Alt+I", self.on_previous_card_info], None, [tr.studying_mark_note(), "*", self.toggle_mark_on_current_note], [tr.studying_bury_note(), "=", self.bury_current_note],