mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 08:03:45 +01:00
Add newline before itemstring in item tooltip (#8213)
This commit is contained in:
parent
d50feb89de
commit
9f1b98b997
@ -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()) {
|
||||
|
Loading…
Reference in New Issue
Block a user