From eacffe0a578187e5db87a6e0703d7a4571010dc8 Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Fri, 9 Jun 2023 13:37:18 +0200 Subject: [PATCH] SPE-1765: Fixed redundant emit of EVT_GLCANVAS_WIPETOWER_MOVED event --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index debdc2054d..ad42dd2738 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -4066,7 +4066,7 @@ void GLCanvas3D::do_move(const std::string& snapshot_type) model_object->invalidate_bounding_box(); } } - else if (v->is_wipe_tower) + else if (m_selection.is_wipe_tower() && v->is_wipe_tower) // Move a wipe tower proxy. wipe_tower_origin = v->get_volume_offset(); }