From 6f8a9bc1fff64cb976a0a7a8bdf05bba289e5923 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Wed, 25 Sep 2019 13:05:18 +0200 Subject: [PATCH] Fixed visual hints in 3D scene not disappearing when tabbing out of size z field in object manipulators sidebar --- src/slic3r/GUI/GLCanvas3D.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index d0ff17a838..5b1188169e 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -3389,10 +3389,9 @@ void GLCanvas3D::handle_sidebar_focus_event(const std::string& opt_key, bool foc m_sidebar_field = focus_on ? opt_key : ""; if (!m_sidebar_field.empty()) - { m_gizmos.reset_all_states(); - m_dirty = true; - } + + m_dirty = true; } void GLCanvas3D::handle_layers_data_focus_event(const t_layer_height_range range, const EditorType type)