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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2018-08-27 15:54:20 +0300
committerEnrico Turri <enricoturri@seznam.cz>2018-08-27 15:54:20 +0300
commiteb9f4ee7777f96de59b132a50fce1fb0bd369eb3 (patch)
tree85495275fcd07e728cdfb1072bed32096e124c04
parent4522811f5bae9ca3a66270ad7f51ac39e0cb6e47 (diff)
Fixed moving center of rotate gizmo
-rw-r--r--xs/src/slic3r/GUI/GLCanvas3D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/slic3r/GUI/GLCanvas3D.cpp b/xs/src/slic3r/GUI/GLCanvas3D.cpp
index ea9fd9086..062b57b49 100644
--- a/xs/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/xs/src/slic3r/GUI/GLCanvas3D.cpp
@@ -3297,7 +3297,7 @@ BoundingBoxf3 GLCanvas3D::_selected_volumes_bounding_box() const
{
for (const GLVolume* volume : selected_volumes)
{
- bb.merge(volume->transformed_convex_hull_bounding_box());
+ bb.merge(volume->transformed_bounding_box());
}
}