No longer reset to default intent when configuration changed

This caused the intent to be reset every time a change was made.

CURA-6600
This commit is contained in:
Jaime van Kessel 2019-09-18 14:52:51 +02:00
parent ede007b860
commit 78ab218cc2
No known key found for this signature in database
GPG key ID: 3710727397403C91
2 changed files with 3 additions and 19 deletions

View file

@ -10,7 +10,7 @@ from cura.Settings.IntentManager import IntentManager
from UM.Qt.ListModel import ListModel
from UM.Settings.ContainerRegistry import ContainerRegistry #To update the list if anything changes.
from PyQt5.QtCore import pyqtProperty, pyqtSignal
import cura.CuraApplication
if TYPE_CHECKING:
from UM.Settings.ContainerRegistry import ContainerInterface
@ -48,7 +48,7 @@ class IntentCategoryModel(ListModel):
ContainerRegistry.getInstance().containerAdded.connect(self._onContainerChange)
ContainerRegistry.getInstance().containerRemoved.connect(self._onContainerChange)
IntentManager.getInstance().configurationChanged.connect(self.update)
cura.CuraApplication.CuraApplication.getInstance().getMachineManager().activeStackChanged.connect(self.update)
self.update()