label[]: Fix cut-off translated text

This commit is contained in:
SmallJoker 2019-09-07 11:15:12 +02:00
parent ea9b241c13
commit 2c9edefde3
1 changed files with 2 additions and 1 deletions

View File

@ -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;