diff options
author | eikobear <kokumeiko@gmail.com> | 2022-01-28 17:03:45 -0500 |
---|---|---|
committer | eikobear <kokumeiko@gmail.com> | 2022-01-28 17:03:45 -0500 |
commit | 3b146c5eaa06d9f6827c651802b9fb2a9a1e013d (patch) | |
tree | 2085ef8738060221f8cd5dae2492d4b02408c096 /doc/classes/OptionButton.xml | |
parent | b9a2569be6fcd1127454127d989b504334d2dac8 (diff) | |
download | redot-engine-3b146c5eaa06d9f6827c651802b9fb2a9a1e013d.tar.gz |
Make various improvements to OptionButton
- Allow OptionButton selection to be set to -1 to signify no selection, both via API and in the editor.
- Reset OptionButton selection to -1 when the selected item has been removed.
- Fully convert PopupMenu to a zero-based ID system, which improves an inconsistency in generated IDs when making new items in the editor.
Diffstat (limited to 'doc/classes/OptionButton.xml')
-rw-r--r-- | doc/classes/OptionButton.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/OptionButton.xml b/doc/classes/OptionButton.xml index 7bb67be4c4..02226df46b 100644 --- a/doc/classes/OptionButton.xml +++ b/doc/classes/OptionButton.xml @@ -84,7 +84,7 @@ <method name="get_selected_id" qualifiers="const"> <return type="int" /> <description> - Returns the ID of the selected item, or [code]0[/code] if no item is selected. + Returns the ID of the selected item, or [code]-1[/code] if no item is selected. </description> </method> <method name="get_selected_metadata" qualifiers="const"> @@ -112,6 +112,7 @@ <argument index="0" name="idx" type="int" /> <description> Selects an item by index and makes it the current item. This will work even if the item is disabled. + Passing [code]-1[/code] as the index deselects any currently selected item. </description> </method> <method name="set_item_disabled"> |