Expose Tree::deselect_all to GDScript
This commit is contained in:
parent
fcba87e696
commit
9eeed06e65
|
@ -52,6 +52,12 @@
|
||||||
The new item will be the [param idx]th child of parent, or it will be the last child if there are not enough siblings.
|
The new item will be the [param idx]th child of parent, or it will be the last child if there are not enough siblings.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="deselect_all">
|
||||||
|
<return type="void" />
|
||||||
|
<description>
|
||||||
|
Deselects all tree items (rows and columns). In [constant SELECT_MULTI] mode also removes selection cursor.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="edit_selected">
|
<method name="edit_selected">
|
||||||
<return type="bool" />
|
<return type="bool" />
|
||||||
<description>
|
<description>
|
||||||
|
|
|
@ -5180,6 +5180,7 @@ void Tree::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_pressed_button"), &Tree::get_pressed_button);
|
ClassDB::bind_method(D_METHOD("get_pressed_button"), &Tree::get_pressed_button);
|
||||||
ClassDB::bind_method(D_METHOD("set_select_mode", "mode"), &Tree::set_select_mode);
|
ClassDB::bind_method(D_METHOD("set_select_mode", "mode"), &Tree::set_select_mode);
|
||||||
ClassDB::bind_method(D_METHOD("get_select_mode"), &Tree::get_select_mode);
|
ClassDB::bind_method(D_METHOD("get_select_mode"), &Tree::get_select_mode);
|
||||||
|
ClassDB::bind_method(D_METHOD("deselect_all"), &Tree::deselect_all);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_columns", "amount"), &Tree::set_columns);
|
ClassDB::bind_method(D_METHOD("set_columns", "amount"), &Tree::set_columns);
|
||||||
ClassDB::bind_method(D_METHOD("get_columns"), &Tree::get_columns);
|
ClassDB::bind_method(D_METHOD("get_columns"), &Tree::get_columns);
|
||||||
|
|
Loading…
Reference in New Issue