Skip to content

Commit

Permalink
Add "Macro Wrapper"
Browse files Browse the repository at this point in the history
take them quotation marks seriously, it's not really at all a "macro wrapper"
  • Loading branch information
Nginearing authored Nov 27, 2024
1 parent c5deaa4 commit af4779f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagstudio/src/qt/helpers/macro_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def LoadMacros(menu_bar, macros_menu):
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
macro = QAction(module.ActionName, menu_bar)
macro.triggered.connect(module.Action)
macro.triggered.connect(module.MacroAction)
macros_menu.addAction(macro)
logging.info("[MACROS] "+ module.ActionName + ": Successfully loaded")
except:
Expand Down

0 comments on commit af4779f

Please sign in to comment.