From 2c5ddfefb2e78938766d6d02c01000f0d99ea49f Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 26 Nov 2021 15:15:51 +0100 Subject: Fixed an encoding problem in simplify suggestion --- src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp index 2b38b104f..016c0dec8 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp @@ -109,7 +109,7 @@ void GLGizmoSimplify::add_simplify_suggestion_notification( if (big_ids.empty()) return; for (size_t object_id : big_ids) { - std::string t = GUI::format(_u8L( + std::string t = GUI::format(_L( "Processing model '%1%' with more than 1M triangles " "could be slow. It is highly recommend to reduce " "amount of triangles."), objects[object_id]->name); -- cgit v1.2.3