diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-06-19 12:52:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 12:52:25 +0200 |
commit | a8132b2fab599254d8afb68568141c7615f9afb2 (patch) | |
tree | 7206387b16c160efc93c2d2ad384b6f2e9629b46 /doc/classes | |
parent | 73a1c6475e9c223c8c678f848a3b25ec154a09a0 (diff) | |
parent | ad8081216c73b8a0ace555eeb96c1d4fbcb3e50e (diff) |
Merge pull request #33235 from nekomatata/rich-text-label-fit-height
Option in RichTextLabel for height to fit content
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index db036d7d88..d4eba77ffa 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -294,6 +294,10 @@ The currently installed custom effects. This is an array of [RichTextEffect]s. To add a custom effect, it's more convenient to use [method install_effect]. </member> + <member name="fit_content_height" type="bool" setter="set_fit_content_height" getter="is_fit_content_height_enabled" default="false"> + If [code]true[/code], the label's height will be automatically updated to fit its content. + [b]Note:[/b] This property is used as a workaround to fix issues with [RichTextLabel] in [Container]s, but it's unreliable in some cases and will be removed in future versions. + </member> <member name="meta_underlined" type="bool" setter="set_meta_underline" getter="is_meta_underlined" default="true"> If [code]true[/code], the label underlines meta tags such as [code][url]{text}[/url][/code]. </member> |