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:
parent
7a94bac34e
commit
f673bc1e3d
@ -1499,7 +1499,7 @@ void EditorInspector::update_tree() {
|
|||||||
if (E) {
|
if (E) {
|
||||||
descr = E->get().brief_description;
|
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]));
|
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()) {
|
while (F && descr == String()) {
|
||||||
for (int i = 0; i < F->get().properties.size(); i++) {
|
for (int i = 0; i < F->get().properties.size(); i++) {
|
||||||
if (F->get().properties[i].name == propname.operator String()) {
|
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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user