Add newline before itemstring in item tooltip (#8213)

master
Wuzzy 2019-03-17 13:55:02 +01:00 committed by SmallJoker
parent d50feb89de
commit 9f1b98b997
1 changed files with 1 additions and 1 deletions

View File

@ -2425,7 +2425,7 @@ void GUIFormSpecMenu::drawList(const ListDrawSpec &s, int layer,
if (tooltip_text.empty())
tooltip_text = utf8_to_wide(item.name);
else if (m_tooltip_append_itemname)
tooltip_text += utf8_to_wide(" [" + item.name + "]");
tooltip_text += utf8_to_wide("\n[" + item.name + "]");
}
}
if (!tooltip_text.empty()) {