diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-10-28 11:52:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 11:52:47 +0200 |
commit | 6d930bd270618aba2445e916e55dc3477cbb6f6c (patch) | |
tree | 3db1dd243536fb9bd67e40ea9465f75b5ddf5bbf /doc/classes | |
parent | 0767a1c3f5c690d1685265f35ce8a4d58800bbb1 (diff) | |
parent | a51f92273a4e3633b924bf002db31e9cf15bf8c1 (diff) |
Merge pull request #54342 from groud/remove_item_list_editor
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/ItemList.xml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/doc/classes/ItemList.xml b/doc/classes/ItemList.xml index 0a995c770b..baa0faaae9 100644 --- a/doc/classes/ItemList.xml +++ b/doc/classes/ItemList.xml @@ -71,12 +71,6 @@ When there is no item at that point, -1 will be returned if [code]exact[/code] is [code]true[/code], and the closest item index will be returned otherwise. </description> </method> - <method name="get_item_count" qualifiers="const"> - <return type="int" /> - <description> - Returns the number of items currently in the list. - </description> - </method> <method name="get_item_custom_bg_color" qualifiers="const"> <return type="Color" /> <argument index="0" name="idx" type="int" /> @@ -387,6 +381,9 @@ <member name="icon_scale" type="float" setter="set_icon_scale" getter="get_icon_scale" default="1.0"> The scale of icon applied after [member fixed_icon_size] and transposing takes effect. </member> + <member name="items_count" type="int" setter="set_item_count" getter="get_item_count" default="0"> + The number of items currently in the list. + </member> <member name="max_columns" type="int" setter="set_max_columns" getter="get_max_columns" default="1"> Maximum columns the list will have. If greater than zero, the content will be split among the specified columns. |