Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2021-11-26 17:15:51 +0300
committerLukas Matena <lukasmatena@seznam.cz>2021-11-26 17:15:51 +0300
commit2c5ddfefb2e78938766d6d02c01000f0d99ea49f (patch)
tree7e342e6b1493b656bf9a4c0c871bd7daf179a9bb
parentf4125f2db8a59d801dd8818d66b5551af758b7ec (diff)
Fixed an encoding problem in simplify suggestionversion_2.4.0-beta2
-rw-r--r--src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp2
1 files changed, 1 insertions, 1 deletions
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);