Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-06-14 16:03:47 +0300
committerj.delarago <joeydelarago@gmail.com>2022-06-14 16:03:47 +0300
commit5cfb6f94e3ca1df3f08a88bcd939e1a53f5b55cf (patch)
treea23c9905f96ee78bb0c27bbc505ed041bda897d3 /cura
parenta87695cd8dfb5c257ed63ffd05a972846bcb77ec (diff)
Update the resolution dropdown model whenever a custom profile is enabled. Otherwise it won't reflect the custom profiles parent resolution.
CURA-8849
Diffstat (limited to 'cura')
-rw-r--r--cura/Machines/Models/ActiveIntentQualitiesModel.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py
index 67b9cec9a4..dc546bc5d4 100644
--- a/cura/Machines/Models/ActiveIntentQualitiesModel.py
+++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py
@@ -33,6 +33,8 @@ class ActiveIntentQualitiesModel(ListModel):
self._intent_category = ""
IntentManager.intentCategoryChangedSignal.connect(self._update)
+ machine_manager = cura.CuraApplication.CuraApplication.getInstance().getMachineManager()
+ machine_manager.activeQualityGroupChanged.connect(self._update)
self._update_timer = QTimer()
self._update_timer.setInterval(100)