diff options
author | Riley Willows <cvaxxbull@gmail.com> | 2024-05-08 10:56:19 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-20 10:40:21 +0200 |
commit | ea7860c6141416e60c7c15894787accf9fd0da0d (patch) | |
tree | a8536f6a0c8814d7d3186c6194a5b36489cde80f /doc | |
parent | daa81bbb7d1c6d75d1711595604178ee62a5801d (diff) | |
download | redot-engine-ea7860c6141416e60c7c15894787accf9fd0da0d.tar.gz |
Fix CheckBox and CheckButton not using max_icon_width
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Button.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml index 30df4fd10d..d2af6179d9 100644 --- a/doc/classes/Button.xml +++ b/doc/classes/Button.xml @@ -122,7 +122,7 @@ The horizontal space between [Button]'s icon and text. Negative values will be treated as [code]0[/code] when used. </theme_item> <theme_item name="icon_max_width" data_type="constant" type="int" default="0"> - The maximum allowed width of the [Button]'s icon. This limit is applied on top of the default size of the icon, or its expanded size if [member expand_icon] is [code]true[/code]. The height is adjusted according to the icon's ratio. + The maximum allowed width of the [Button]'s icon. This limit is applied on top of the default size of the icon, or its expanded size if [member expand_icon] is [code]true[/code]. The height is adjusted according to the icon's ratio. If the button has additional icons (e.g. [CheckBox]), they will also be limited. </theme_item> <theme_item name="outline_size" data_type="constant" type="int" default="0"> The size of the text outline. |