Fix editor tooltip formatting

Removed unnecessary word wrap which caused broken tags and general
ugliness. Fixes #24926

(cherry picked from commit 8b1b2f6a4c)
This commit is contained in:
James Buck 2019-04-20 11:44:00 -05:00 committed by Rémi Verschelde
parent 7a94bac34e
commit f673bc1e3d

View file

@ -1499,7 +1499,7 @@ void EditorInspector::update_tree() {
if (E) {
descr = E->get().brief_description;
}
class_descr_cache[type2] = descr.word_wrap(80);
class_descr_cache[type2] = descr;
}
category->set_tooltip(p.name + "::" + (class_descr_cache[type2] == "" ? "" : class_descr_cache[type2]));
@ -1651,7 +1651,7 @@ void EditorInspector::update_tree() {
while (F && descr == String()) {
for (int i = 0; i < F->get().properties.size(); i++) {
if (F->get().properties[i].name == propname.operator String()) {
descr = F->get().properties[i].description.strip_edges().word_wrap(80);
descr = F->get().properties[i].description.strip_edges();
break;
}
}