From 582eccd51bc93542a73eb9d0aac9924c88c3064c Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 19 Sep 2022 10:58:20 +0200 Subject: [PATCH] Cut: turn off contour disabling for now --- src/slic3r/GUI/Gizmos/GLGizmoCut.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index 905e39db3..d235ad4c5 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -1942,7 +1942,9 @@ bool GLGizmoCut3D::gizmo_event(SLAGizmoEventType action, const Vec2d& mouse_posi update_model_object(); m_parent.set_as_dirty(); } else { - m_c->object_clipper()->pass_mouse_click(pos_world); + // Following would inform the clipper about the mouse click, so it can + // toggle the respective contour as disabled. + //m_c->object_clipper()->pass_mouse_click(pos_world); } return true;