diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-10 10:44:31 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-10 10:44:31 +0100 |
commit | e63500344faf9ac59eb8c51c9e2cd993b49b2945 (patch) | |
tree | 1b3417825bed5aae2b56f7db98b04d58a71fce3a /doc/classes | |
parent | 269fa200d04ae96b0114b788e18df638c5fb164b (diff) | |
parent | 9eeed06e65cbf5c3e124bd985f16e57807dbc8d5 (diff) |
Merge pull request #71056 from marzecdawid/add-tree-deselect-all-to-gdscript
Expose Tree::deselect_all to GDScript
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Tree.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/Tree.xml b/doc/classes/Tree.xml index 584a2a2a7b..bfabd2d97d 100644 --- a/doc/classes/Tree.xml +++ b/doc/classes/Tree.xml @@ -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. </description> </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"> <return type="bool" /> <description> |