From f60c11776103ac7506174c4fafd23a89feba0f69 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 12:50:26 +0100 Subject: [PATCH] One more encoding problem Uncovered after rebasing onto current master --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 4d98fe33b..adc1e2e44 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -1302,7 +1302,7 @@ void GLCanvas3D::Labels::render(const std::vector& sorted_ return owner.model_instance_id == id; }); if (it != owners.end()) - it->print_order = _(L("Seq.")) + "#: " + std::to_string(i + 1); + it->print_order = std::string((_(L("Seq."))).ToUTF8()) + "#: " + std::to_string(i + 1); } }