mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
No keep/discard setting dialog in project loading
CURA-4966
This commit is contained in:
parent
b8d3cbfe16
commit
ef8cd304dc
2 changed files with 6 additions and 6 deletions
|
@ -980,7 +980,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply)
|
||||
return
|
||||
quality_changes_group = quality_changes_group_dict[self._quality_changes_to_apply]
|
||||
machine_manager.setQualityChangesGroup(quality_changes_group)
|
||||
machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True)
|
||||
else:
|
||||
self._quality_type_to_apply = self._quality_type_to_apply.lower()
|
||||
quality_group_dict = quality_manager.getQualityGroups(global_stack)
|
||||
|
@ -995,7 +995,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type)
|
||||
|
||||
if quality_group is not None:
|
||||
machine_manager.setQualityGroup(quality_group)
|
||||
machine_manager.setQualityGroup(quality_group, no_dialog = True)
|
||||
|
||||
# Notify everything/one that is to notify about changes.
|
||||
global_stack.containersChanged.emit(global_stack.getTop())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue