diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-01-27 10:22:23 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-01-27 10:44:53 +0300 |
commit | 64971bcc8a5351c4a3f01888abf2a28d15f5b755 (patch) | |
tree | e5fb5cebcfb50fefb317af0c8dc6c3734a155933 /doc/classes | |
parent | 1f5669d8d4a9515d605ad9fc55313fc27bd6d250 (diff) |
Added missed Button `font_hover_pressed_color` style
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Button.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml index a1ac82012f..8908c5f830 100644 --- a/doc/classes/Button.xml +++ b/doc/classes/Button.xml @@ -124,6 +124,9 @@ <theme_item name="font_hover_color" type="Color" default="Color( 0.94, 0.94, 0.94, 1 )"> Text [Color] used when the [Button] is being hovered. </theme_item> + <theme_item name="font_hover_pressed_color" type="Color" default="Color( 1, 1, 1, 1 )"> + Text [Color] used when the [Button] is being hovered and pressed. + </theme_item> <theme_item name="font_outline_color" type="Color" default="Color( 1, 1, 1, 1 )"> Text outline [Color] of the [Button]. </theme_item> @@ -149,7 +152,7 @@ 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]. + Default icon modulate [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. |