You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Rename TreeItem's set_tooltip to set_tooltip_text
`set_tooltip` -> `set_tooltip_text` `get_tooltip` -> `get_tooltip_text` For consistency: `get_button_tooltip` -> `get_button_tooltip_text` And the `tooltip` parameter in `add_button` was renamed to `tooltip_text`
This commit is contained in:
@@ -580,8 +580,8 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
|
||||
stack_trace->set_text(1, frame_txt);
|
||||
}
|
||||
|
||||
error->set_tooltip(0, tooltip);
|
||||
error->set_tooltip(1, tooltip);
|
||||
error->set_tooltip_text(0, tooltip);
|
||||
error->set_tooltip_text(1, tooltip);
|
||||
|
||||
if (warning_count == 0 && error_count == 0) {
|
||||
expand_all_button->set_disabled(false);
|
||||
|
||||
Reference in New Issue
Block a user