From eb9f4ee7777f96de59b132a50fce1fb0bd369eb3 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Mon, 27 Aug 2018 14:54:20 +0200 Subject: [PATCH] Fixed moving center of rotate gizmo --- xs/src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } }