From 41bf6aeab8ba26e57addf24e6d450789f9cd14f8 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 28 Mar 2023 13:54:11 +0200 Subject: [PATCH] EmbossGizmo: Fixed a text of the tooltip for "Keep rotation" option --- src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp b/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp index e7220481cc..ae3704b52e 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp @@ -773,7 +773,7 @@ GLGizmoEmboss::GuiCfg GLGizmoEmboss::create_gui_configuration() tr.skew_ration = _u8L("Skew ratio"); tr.from_surface = _u8L("From surface"); tr.rotation = _u8L("Rotation"); - tr.keep_up = _u8L("Keep Up"); + tr.keep_up = "Keep Rotation"; tr.collection = _u8L("Collection"); float max_advanced_text_width = std::max({ @@ -2995,7 +2995,7 @@ void GLGizmoEmboss::draw_advanced() } } if (ImGui::IsItemHovered()) - ImGui::SetTooltip("%s", _u8L("Keep text orientation during surface dragging.\nNot stable between horizontal and vertical alignment.").c_str()); + ImGui::SetTooltip("%s", _u8L("Lock the text's rotation when moving text along the object's surface.").c_str()); // when more collection add selector if (ff.font_file->infos.size() > 1) {