From 2228c5e0bfad47ef198b4f42d96dcc9a61d2e710 Mon Sep 17 00:00:00 2001 From: YuSanka <yusanka@gmail.com> Date: Fri, 12 Feb 2021 14:27:02 +0100 Subject: [PATCH] Fixed localization for the message text --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 5296fd6fa..0121bb3f8 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3720,7 +3720,7 @@ bool Plater::priv::warnings_dialog() text += it.first.message; } //text += "\n\nDo you still wish to export?"; - wxMessageDialog msg_wingow(this->q, text, wxString(SLIC3R_APP_NAME " ") + _L("generated warnings"), wxOK); + wxMessageDialog msg_wingow(this->q, from_u8(text), wxString(SLIC3R_APP_NAME " ") + _L("generated warnings"), wxOK); const auto res = msg_wingow.ShowModal(); return res == wxID_OK;