1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Don't show a copy of the property's name in the inspector's tooltip if there's no description

This commit is contained in:
Michael Alexsander
2020-02-26 00:22:18 -03:00
parent 1e57b558f2
commit 28d3f85e64
2 changed files with 28 additions and 9 deletions

View File

@@ -502,7 +502,6 @@ Control *ConnectionsDockTree::make_custom_tooltip(const String &p_text) const {
String text = TTR("Signal:") + " [u][b]" + p_text.get_slice("::", 0) + "[/b][/u]";
text += p_text.get_slice("::", 1).strip_edges() + "\n";
text += p_text.get_slice("::", 2).strip_edges();
help_bit->set_text(text);
help_bit->call_deferred("set_text", text); //hack so it uses proper theme once inside scene
return help_bit;
}