mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Moved result checking to the Dialog
CURA-1263
This commit is contained in:
parent
100e1f4f40
commit
b59be4c88b
2 changed files with 5 additions and 7 deletions
|
@ -50,6 +50,10 @@ class WorkspaceDialog(QObject):
|
|||
self.qualityChangesConflictChanged.emit()
|
||||
|
||||
def getResult(self):
|
||||
if "machine" in self._result and not self._has_machine_conflict:
|
||||
self._result["machine"] = None
|
||||
if "quality_changes" in self._result and not self._has_quality_changes_conflict:
|
||||
self._result["quality_changes"] = None
|
||||
return self._result
|
||||
|
||||
def _createViewFromQML(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue