diff --git a/src/app/settingsview/components/PluginPreferencesListView.qml b/src/app/settingsview/components/PluginPreferencesListView.qml index 52b1ef39..60b2ed80 100644 --- a/src/app/settingsview/components/PluginPreferencesListView.qml +++ b/src/app/settingsview/components/PluginPreferencesListView.qml @@ -61,12 +61,7 @@ Rectangle { function setPreference(pluginId, preferenceKey, preferenceNewValue) { - if (isLoaded) { - PluginModel.unloadPlugin(pluginId) - PluginModel.setPluginPreference(pluginId, accountId, preferenceKey, preferenceNewValue) - PluginModel.loadPlugin(pluginId) - } else - PluginModel.setPluginPreference(pluginId, accountId, preferenceKey, preferenceNewValue) + PluginModel.setPluginPreference(pluginId, accountId, preferenceKey, preferenceNewValue) } ColumnLayout {