diff options
author | necoro <> | 2007-07-09 04:51:41 +0000 |
---|---|---|
committer | necoro <> | 2007-07-09 04:51:41 +0000 |
commit | baf4d66fea871cd6c285c51fcbb995efe5dd6800 (patch) | |
tree | 6bb632c8612f4dde50bceb798593b96e9c234cb1 /portato/gui/qt/windows.py | |
parent | 6d9340ebbb5b942b0996053b0479827c1cf81b5a (diff) | |
download | portato-baf4d66fea871cd6c285c51fcbb995efe5dd6800.tar.gz portato-baf4d66fea871cd6c285c51fcbb995efe5dd6800.tar.bz2 portato-baf4d66fea871cd6c285c51fcbb995efe5dd6800.zip |
added resume_loop plugin
Diffstat (limited to 'portato/gui/qt/windows.py')
-rw-r--r-- | portato/gui/qt/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py index 3bd9296..5f1100f 100644 --- a/portato/gui/qt/windows.py +++ b/portato/gui/qt/windows.py @@ -116,7 +116,7 @@ class PluginDialog (Window): @Qt.pyqtSignature("") def on_buttonBox_accepted(self): for pluginKey, value in self.changedPlugins.iteritems(): - self.plugins[pluginKey].set_enabled(value) + self.plugins[pluginKey].set_option("disabled", not value) self.accept() |