Bug fixes

This commit is contained in:
St.Huang 2018-08-19 02:00:41 +08:00
parent 7f678cd31e
commit 678a75245f
2 changed files with 2 additions and 2 deletions

View File

@ -117,5 +117,5 @@ def config_menu():
add menu to anki window menebar
"""
action = QAction(APP_ICON, "FastWQ...", mw)
action.triggered.connect(show_options)
action.triggered.connect(lambda: show_options())
mw.form.menuTools.addAction(action)

View File

@ -117,5 +117,5 @@ def config_menu():
add menu to anki window menebar
"""
action = QAction(APP_ICON, "FastWQ...", mw)
action.triggered.connect(show_options)
action.triggered.connect(lambda: show_options())
mw.form.menuTools.addAction(action)