diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2020-05-08 09:03:52 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-01-26 22:05:59 +0300 |
commit | 6d828984707958031591f681a75793aeca83036b (patch) | |
tree | 384ac97988de036f48222403f776c3b381f62ef5 /doc | |
parent | fa498f6105bb18a038210f4c000e1a97b7c86354 (diff) |
Reveals Button "icon_color" style properties to the user
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Button.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml index 4bbe74f888..a1ac82012f 100644 --- a/doc/classes/Button.xml +++ b/doc/classes/Button.xml @@ -139,6 +139,21 @@ <theme_item name="hseparation" type="int" default="2"> The horizontal space between [Button]'s icon and text. </theme_item> + <theme_item name="icon_disabled_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Icon modulate [Color] used when the [Button] is disabled. + </theme_item> + <theme_item name="icon_hover_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Icon modulate [Color] used when the [Button] is being hovered. + </theme_item> + <theme_item name="icon_hover_pressed_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Icon modulate [Color] used when the [Button] is being hovered and pressed. + </theme_item> + <theme_item name="icon_normal_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Default icon [Color] of the [Button]. + </theme_item> + <theme_item name="icon_pressed_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Icon modulate [Color] used when the [Button] is being pressed. + </theme_item> <theme_item name="normal" type="StyleBox"> Default [StyleBox] for the [Button]. </theme_item> |