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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-05-09 16:13:14 +0300
committerbubnikv <bubnikv@gmail.com>2019-05-09 16:13:14 +0300
commitb247bbab2e989f9a2699086ab5c259cf0026fd3f (patch)
tree5169c8e4bbda6662e386a6bfbd19da136449e618 /src/slic3r/GUI/Field.hpp
parent400ab5333e4ca81b1bdc49584692558d78d73a3f (diff)
Fixed localization of parameter legends.
Diffstat (limited to 'src/slic3r/GUI/Field.hpp')
-rw-r--r--src/slic3r/GUI/Field.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp
index 210ae73f4..ae449450a 100644
--- a/src/slic3r/GUI/Field.hpp
+++ b/src/slic3r/GUI/Field.hpp
@@ -465,7 +465,7 @@ public:
void set_value(const std::string& value, bool change_event = false) {
m_disable_change_event = !change_event;
- dynamic_cast<wxStaticText*>(window)->SetLabel(value);
+ dynamic_cast<wxStaticText*>(window)->SetLabel(wxString::FromUTF8(value.data()));
m_disable_change_event = false;
}
void set_value(const boost::any& value, bool change_event = false) {