From 6215393ae5094df1ce46b2ada5119d12bfbe7c12 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 10 Aug 2023 11:02:26 +0200 Subject: [PATCH] Fix for SPE-1836 : CUT_rotate circle isn't updated after undo --- src/slic3r/GUI/Gizmos/GLGizmoCut.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index 885f9d97a2..36576e9494 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -835,6 +835,8 @@ void GLGizmoCut3D::on_load(cereal::BinaryInputArchive& ar) ar( m_keep_upper, m_keep_lower, m_rotate_lower, m_rotate_upper, m_hide_cut_plane, m_mode, m_connectors_editing, m_ar_plane_center, m_rotation_m); + m_start_dragging_m = m_rotation_m; + m_transformed_bounding_box = transformed_bounding_box(m_ar_plane_center, m_rotation_m); set_center_pos(m_ar_plane_center);