mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
likewise for manage note types
This commit is contained in:
parent
29dc4f298a
commit
265bef2b68
2 changed files with 8 additions and 0 deletions
|
@ -412,6 +412,7 @@ class Browser(QMainWindow):
|
|||
f.actionChangeModel.triggered.connect(self.onChangeModel)
|
||||
f.actionFindDuplicates.triggered.connect(self.onFindDupes)
|
||||
f.actionFindReplace.triggered.connect(self.onFindReplace)
|
||||
f.actionManage_Note_Types.triggered.connect(self.mw.onNoteTypes)
|
||||
f.actionDelete.triggered.connect(self.deleteNotes)
|
||||
# cards
|
||||
f.actionChange_Deck.triggered.connect(self.setDeck)
|
||||
|
|
|
@ -300,6 +300,8 @@
|
|||
<addaction name="actionFindDuplicates"/>
|
||||
<addaction name="actionFindReplace"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionManage_Note_Types"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionDelete"/>
|
||||
</widget>
|
||||
<addaction name="menuEdit"/>
|
||||
|
@ -562,6 +564,11 @@
|
|||
<string>Clear Unused Tags</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionManage_Note_Types">
|
||||
<property name="text">
|
||||
<string>Manage Note Types...</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="icons.qrc"/>
|
||||
|
|
Loading…
Reference in a new issue