Skip to content

Commit

Permalink
label[]: Fix cut-off translated text
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Sep 7, 2019
1 parent ea9b241 commit 2c9edef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/guiFormSpecMenu.cpp
Expand Up @@ -1403,7 +1403,8 @@ void GUIFormSpecMenu::parseLabel(parserData* data, const std::string &element)
std::vector<std::string> lines = split(text, '\n');

for (unsigned int i = 0; i != lines.size(); i++) {
std::wstring wlabel = utf8_to_wide(unescape_string(lines[i]));
std::wstring wlabel = unescape_translate(unescape_string(
utf8_to_wide(lines[i])));

core::rect<s32> rect;

Expand Down

0 comments on commit 2c9edef

Please sign in to comment.