mirror of https://github.com/godotengine/godot
Expose Tree::scroll_to_item()
This commit is contained in:
parent
89a43d9c2e
commit
177b804f30
|
|
@ -4174,6 +4174,7 @@ void Tree::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_column_title_language", "column"), &Tree::get_column_title_language);
|
ClassDB::bind_method(D_METHOD("get_column_title_language", "column"), &Tree::get_column_title_language);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("get_scroll"), &Tree::get_scroll);
|
ClassDB::bind_method(D_METHOD("get_scroll"), &Tree::get_scroll);
|
||||||
|
ClassDB::bind_method(D_METHOD("scroll_to_item", "item"), &Tree::_scroll_to_item);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_hide_folding", "hide"), &Tree::set_hide_folding);
|
ClassDB::bind_method(D_METHOD("set_hide_folding", "hide"), &Tree::set_hide_folding);
|
||||||
ClassDB::bind_method(D_METHOD("is_folding_hidden"), &Tree::is_folding_hidden);
|
ClassDB::bind_method(D_METHOD("is_folding_hidden"), &Tree::is_folding_hidden);
|
||||||
|
|
|
||||||
|
|
@ -564,6 +564,10 @@ protected:
|
||||||
return get_item_rect(Object::cast_to<TreeItem>(p_item), p_column);
|
return get_item_rect(Object::cast_to<TreeItem>(p_item), p_column);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _scroll_to_item(Object *p_item) {
|
||||||
|
scroll_to_item(Object::cast_to<TreeItem>(p_item));
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual String get_tooltip(const Point2 &p_pos) const override;
|
virtual String get_tooltip(const Point2 &p_pos) const override;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue