From 778deab03307b9d1d1aa42eae1e75742b5edf00a Mon Sep 17 00:00:00 2001 From: Vovodroid Date: Fri, 16 May 2025 18:54:10 +0300 Subject: [PATCH] Correct repair menu message (#9468) --- src/slic3r/GUI/GUI_ObjectList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index e78d54d4d6..bd1a00ece2 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -557,7 +557,7 @@ MeshErrorsInfo ObjectList::get_mesh_errors_info(const int obj_idx, const int vol *non_manifold_edges = stats.open_edges; if (is_windows10() && !sidebar_info) - tooltip += "\n" + _L("Right click the icon to fix model object"); + tooltip += "\n" + _L("Click the icon to repair model object"); return { tooltip, get_warning_icon_name(stats) }; }