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:
@ -630,7 +630,7 @@ void EditorFeatureProfileManager::_class_list_item_selected() {
|
||||
property->set_selectable(0, true);
|
||||
property->set_checked(0, !edited->is_class_property_disabled(class_name, name));
|
||||
property->set_text(0, text);
|
||||
property->set_tooltip(0, tooltip);
|
||||
property->set_tooltip_text(0, tooltip);
|
||||
property->set_metadata(0, name);
|
||||
String icon_type = Variant::get_type_name(E.type);
|
||||
property->set_icon(0, EditorNode::get_singleton()->get_class_icon(icon_type));
|
||||
|
||||
Reference in New Issue
Block a user