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
diff options
context:
space:
mode:
authorKonstantinos Karmas <konskarm@gmail.com>2021-10-06 17:46:20 +0300
committerKonstantinos Karmas <konskarm@gmail.com>2021-10-06 17:46:20 +0300
commite793eac42548d906c7e54d51e358424a1e80afe2 (patch)
treee767a90234667cc488aa78bc5dec99735afba745 /cura/Arranging
parent4aae3d7e2e782fbf53ec8e1e04a7774145e1a77d (diff)
Push the grouped operation instead of redoing it
CURA-7851
Diffstat (limited to 'cura/Arranging')
-rw-r--r--cura/Arranging/Nest2DArrange.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py
index 6333eea502..ebe96202f2 100644
--- a/cura/Arranging/Nest2DArrange.py
+++ b/cura/Arranging/Nest2DArrange.py
@@ -158,5 +158,5 @@ def arrange(nodes_to_arrange: List["SceneNode"],
"""
grouped_operation, not_fit_count = createGroupOperationForArrange(nodes_to_arrange, build_volume, fixed_nodes, factor, add_new_nodes_in_scene)
- grouped_operation.redo()
+ grouped_operation.push()
return not_fit_count != 0