From c494dec1c416c34820e6c2507a94d84f65c37eb7 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Thu, 22 Nov 2018 11:13:00 +0100 Subject: [PATCH] Gizmos' shortcut not requiring shift key pressed --- 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 25a927850..316c2d48e 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -4311,7 +4311,7 @@ void GLCanvas3D::on_char(wxKeyEvent& evt) default: { #if ENABLE_GIZMOS_SHORTCUT - if (evt.ShiftDown() && m_gizmos.handle_shortcut(keyCode, m_selection)) + if (m_gizmos.handle_shortcut(keyCode, m_selection)) { _update_gizmos_data(); render();