mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Disable Toggle Bury when nothing is selected (#2529)
This commit is contained in:
parent
86479ad924
commit
3d9299137d
1 changed files with 1 additions and 0 deletions
|
|
@ -592,6 +592,7 @@ class Browser(QMainWindow):
|
|||
self.form.action_forget.setEnabled(has_selection)
|
||||
self.form.actionReposition.setEnabled(has_selection)
|
||||
self.form.actionToggle_Suspend.setEnabled(has_selection)
|
||||
self.form.action_toggle_bury.setEnabled(has_selection)
|
||||
self.form.menuFlag.setEnabled(has_selection)
|
||||
|
||||
def _update_current_actions(self) -> None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue