mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
add 'clear unused tags' back to menu
users who only use the sidebar may miss it
This commit is contained in:
parent
bef6e5bcf5
commit
29dc4f298a
2 changed files with 7 additions and 0 deletions
|
@ -408,6 +408,7 @@ class Browser(QMainWindow):
|
|||
f.actionAdd.triggered.connect(self.mw.onAddCard)
|
||||
f.actionAdd_Tags.triggered.connect(lambda: self.addTags())
|
||||
f.actionRemove_Tags.triggered.connect(lambda: self.deleteTags())
|
||||
f.actionClear_Unused_Tags.triggered.connect(self.clearUnusedTags)
|
||||
f.actionChangeModel.triggered.connect(self.onChangeModel)
|
||||
f.actionFindDuplicates.triggered.connect(self.onFindDupes)
|
||||
f.actionFindReplace.triggered.connect(self.onFindReplace)
|
||||
|
|
|
@ -293,6 +293,7 @@
|
|||
<addaction name="separator"/>
|
||||
<addaction name="actionAdd_Tags"/>
|
||||
<addaction name="actionRemove_Tags"/>
|
||||
<addaction name="actionClear_Unused_Tags"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionChangeModel"/>
|
||||
<addaction name="separator"/>
|
||||
|
@ -556,6 +557,11 @@
|
|||
<string>Ctrl+Shift+R</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionClear_Unused_Tags">
|
||||
<property name="text">
|
||||
<string>Clear Unused Tags</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="icons.qrc"/>
|
||||
|
|
Loading…
Reference in a new issue