diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Preferences/ConfigurationPages/PluginManagerPage.py --- a/Preferences/ConfigurationPages/PluginManagerPage.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Preferences/ConfigurationPages/PluginManagerPage.py Fri Mar 11 16:51:57 2011 +0100 @@ -20,6 +20,7 @@ import Preferences import Utilities + class PluginManagerPage(ConfigurationPageBase, Ui_PluginManagerPage): """ Class implementing the Plugin Manager configuration page. @@ -44,9 +45,9 @@ """ Public slot to save the Viewmanager configuration. """ - Preferences.setPluginManager("ActivateExternal", + Preferences.setPluginManager("ActivateExternal", self.activateExternalPluginsCheckBox.isChecked()) - Preferences.setPluginManager("DownloadPath", + Preferences.setPluginManager("DownloadPath", self.downloadDirEdit.text()) @pyqtSlot() @@ -66,6 +67,7 @@ dn = dn[:-1] self.downloadDirEdit.setText(dn) + def create(dlg): """ Module function to create the configuration page.