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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2019-06-05 16:27:20 +0300
committerLukas Matena <lukasmatena@seznam.cz>2019-06-14 16:28:09 +0300
commit7b07a8da83633c5391b5b8ca8db5813ff1c367c9 (patch)
tree99689d1a69e2703beb3c87901faf986a8de4dabe /src/slic3r/GUI/GUI_ObjectManipulation.cpp
parent980c6673d42e561d7bf53937e8213e2ce1f0e943 (diff)
Reset buttons: synchronization of instances/volumes
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectManipulation.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectManipulation.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
index 2cbd048e5..224c053e4 100644
--- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp
+++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
@@ -216,6 +216,9 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
else
return;
+ selection.synchronize_unselected_instances(Selection::SYNC_ROTATION_GENERAL);
+ selection.synchronize_unselected_volumes();
+
canvas->do_mirror();
canvas->set_as_dirty();
UpdateAndShow(true);
@@ -294,6 +297,8 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
else
return;
+ selection.synchronize_unselected_instances(Selection::SYNC_ROTATION_GENERAL);
+ selection.synchronize_unselected_volumes();
canvas->do_rotate();
UpdateAndShow(true);