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.
This commit is contained in:
evandrocoan 2021-09-08 21:26:48 -03:00
parent e295c4ccfb
commit 23891918cb

View file

@ -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],