From 9729f4f3d2320a23181b544f4188089b35a382ef Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 8 Oct 2021 17:46:10 +0200 Subject: Set properties immediately upon constructing Instead of afterwards. A bit more efficient. Contributes to issue CURA-8609. --- cura/Machines/Models/MaterialManagementModel.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cura/Machines') diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py index 617fc5be9e..2994b48918 100644 --- a/cura/Machines/Models/MaterialManagementModel.py +++ b/cura/Machines/Models/MaterialManagementModel.py @@ -330,11 +330,12 @@ class MaterialManagementModel(QObject): """ if self._sync_all_dialog is None: qml_path = Resources.getPath(cura.CuraApplication.CuraApplication.ResourceTypes.QmlFiles, "Preferences", "Materials", "MaterialsSyncDialog.qml") - self._sync_all_dialog = cura.CuraApplication.CuraApplication.getInstance().createQmlComponent(qml_path, {}) + self._sync_all_dialog = cura.CuraApplication.CuraApplication.getInstance().createQmlComponent(qml_path, { + "materialManagementModel": self, + "pageIndex": 0 + }) if self._sync_all_dialog is None: # Failed to load QML file. return - self._sync_all_dialog.setProperty("materialManagementModel", self) - self._sync_all_dialog.setProperty("pageIndex", 0) self._sync_all_dialog.show() @pyqtSlot(result = QUrl) -- cgit v1.2.3