Damien Elmes 2022-06-20 10:25:50 +10:00
parent 48c7bb031e
commit 32b9d34749
2 changed files with 6 additions and 1 deletions

View file

@ -262,6 +262,7 @@ class Browser(QMainWindow):
self.mw.maybeHideAccelerators(self) self.mw.maybeHideAccelerators(self)
add_ellipsis_to_action_label(f.actionCopy) add_ellipsis_to_action_label(f.actionCopy)
add_ellipsis_to_action_label(f.action_forget)
def closeEvent(self, evt: QCloseEvent) -> None: def closeEvent(self, evt: QCloseEvent) -> None:
if self._closeEventHasCleanedUp: if self._closeEventHasCleanedUp:

View file

@ -933,7 +933,11 @@ time = %(time)d;
], ],
], ],
[tr.studying_bury_card(), "-", self.bury_current_card], [tr.studying_bury_card(), "-", self.bury_current_card],
[tr.actions_forget_card(), "Ctrl+Alt+N", self.forget_current_card], [
tr.actions_with_ellipsis(action=tr.actions_forget_card()),
"Ctrl+Alt+N",
self.forget_current_card,
],
[ [
tr.actions_with_ellipsis(action=tr.actions_set_due_date()), tr.actions_with_ellipsis(action=tr.actions_set_due_date()),
"Ctrl+Shift+D", "Ctrl+Shift+D",