From d6c731218102bfc4e6f1f432b74bc705b1e7bcef Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 22 Feb 2023 16:58:49 +0100 Subject: [PATCH] FOllow-up a41dd8eeed50b9bfbb9f37769569f091512d8124 - Fix for SPE-1521 - Use the arrows to move the cut plane out of the object --- src/slic3r/GUI/Gizmos/GLGizmoCut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index d8064bd043..b7470a854b 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -364,7 +364,7 @@ void GLGizmoCut3D::shift_cut_z(double delta) { Vec3d new_cut_center = m_plane_center; new_cut_center[Z] += delta; - set_center(new_cut_center); + set_center(new_cut_center, true); } void GLGizmoCut3D::rotate_vec3d_around_plane_center(Vec3d&vec)