Rename hasPluginsEnabledOrDisabledChanged to pluginsEnabledOrDisabledChanged

This makes it more in line with the other signal naming

CURA-8587
This commit is contained in:
Jaime van Kessel 2021-12-16 10:42:44 +01:00
parent aa93186707
commit 14406e13bd
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ class RestartManager(QObject):
self._plugin_registry: "PluginRegistry" = CuraApplication.getInstance().getPluginRegistry()
self._manager.installedPackagesChanged.connect(self.checkIfRestartNeeded)
self._plugin_registry.hasPluginsEnabledOrDisabledChanged.connect(self.checkIfRestartNeeded)
self._plugin_registry.pluginsEnabledOrDisabledChanged.connect(self.checkIfRestartNeeded)
self._restart_needed = False