From d34beab557bb960a4ba6ef257f4fad09a1d47e91 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 24 Nov 2020 15:36:39 +0100 Subject: [PATCH] Add "slow" hint to rotations for arrangement --- 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 2ae852dbd..e55c5fa8c 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -3892,7 +3892,7 @@ bool GLCanvas3D::_render_arrange_menu(float pos_x) settings_changed = true; } - if (imgui->checkbox(_(L("Enable rotations")), settings.enable_rotation)) { + if (imgui->checkbox(_(L("Enable rotations (slow)")), settings.enable_rotation)) { m_arrange_settings.enable_rotation = settings.enable_rotation; settings_changed = true; }