Pass new config on to add-on

This commit is contained in:
Glutanimate 2018-07-28 09:25:38 +02:00
parent ee3357a943
commit 8ce7c00d54

View File

@ -493,8 +493,9 @@ class ConfigEditor(QDialog):
if new_conf != self.conf:
self.mgr.writeConfig(self.addon, new_conf)
# does the add-on define an action to be fired?
act = self.mgr.configUpdatedAction(self.addon)
if act:
act()
act(new_conf)
super().accept()