diff options
Diffstat (limited to 'src/ThemeBuilder/components/properties/PointPropertyEditor.cpp')
-rw-r--r-- | src/ThemeBuilder/components/properties/PointPropertyEditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp b/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp index f2d10cf7..8d7ac942 100644 --- a/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp +++ b/src/ThemeBuilder/components/properties/PointPropertyEditor.cpp @@ -14,7 +14,7 @@ PointPropertyEditor::PointPropertyEditor() { auto point_mapper = ui::mapper::MapperRegistry::GetInstance()->GetMapper<ui::Point>(); try { - auto point = point_mapper->MapFromString(text.ToString()); + auto point = point_mapper->MapFromString(text.ToString().ToUtf8()); point_ = point; is_text_valid_ = true; RaiseChangeEvent(); |