summaryrefslogtreecommitdiffstats
path: root/doc/classes/Button.xml
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-03-31 21:17:59 +0200
committerYuri Sizov <yuris@humnom.net>2023-03-31 21:39:02 +0200
commit1522762dc986c130ad63cbf854514d730788a4cf (patch)
tree81cbbbb7028bc95f828d78644b570e506736ece9 /doc/classes/Button.xml
parent9fae65404a223a86816685b0b4036a57b8f976b7 (diff)
downloadredot-engine-1522762dc986c130ad63cbf854514d730788a4cf.tar.gz
Make icons of scripted and custom classes fit the editor UI
Also: - Add an option to limit the icon size in PopupMenu. This is similar to how this works in Tree and TreeItem. - Add the same option to TabBar. - Add a theme constant for Tree, PopupMenu, Button, and TabBar to apply this limit on the control level. Co-authored-by: Daylily-Zeleen <daylily-zeleen@foxmail.com>
Diffstat (limited to 'doc/classes/Button.xml')
-rw-r--r--doc/classes/Button.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml
index 9fce014125..ec2447dbbc 100644
--- a/doc/classes/Button.xml
+++ b/doc/classes/Button.xml
@@ -48,7 +48,7 @@
When this property is enabled, text that is too large to fit the button is clipped, when disabled the Button will always be wide enough to hold the text.
</member>
<member name="expand_icon" type="bool" setter="set_expand_icon" getter="is_expand_icon" default="false">
- When enabled, the button's icon will expand/shrink to fit the button's size while keeping its aspect.
+ When enabled, the button's icon will expand/shrink to fit the button's size while keeping its aspect. See also [theme_item icon_max_width].
</member>
<member name="flat" type="bool" setter="set_flat" getter="is_flat" default="false">
Flat buttons don't display decoration.
@@ -116,6 +116,9 @@
<theme_item name="h_separation" data_type="constant" type="int" default="2">
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.
+ </theme_item>
<theme_item name="outline_size" data_type="constant" type="int" default="0">
The size of the text outline.
[b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended.