From 21abf8d88e338a80b0393888746190b82f0c3e3d Mon Sep 17 00:00:00 2001 From: Justin Schuh Date: Sun, 18 Jul 2021 22:56:50 -0700 Subject: [PATCH] Fix bucket/seed fill tooltips (#6720) --- src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp index 1f0dbd137f..9b28eedd1b 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp @@ -346,7 +346,7 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::PushTextWrapPos(max_tooltip_width); - ImGui::TextUnformatted(_L("Paints neighboring facets whose relative angle is less or equal to set angle.").ToUTF8().data()); + ImGui::TextUnformatted(_L("Paints neighboring facets that have the same color.").ToUTF8().data()); ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } @@ -364,7 +364,7 @@ void GLGizmoMmuSegmentation::on_render_input_window(float x, float y, float bott if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::PushTextWrapPos(max_tooltip_width); - ImGui::TextUnformatted(_L("Paints neighboring that have the same color.").ToUTF8().data()); + ImGui::TextUnformatted(_L("Paints neighboring facets whose relative angle is less or equal to set angle.").ToUTF8().data()); ImGui::PopTextWrapPos(); ImGui::EndTooltip(); }