diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-23 10:17:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-23 10:17:27 +0200 |
commit | 11efbd582e8c5fa9213ab86b54b04c27e4755522 (patch) | |
tree | 04b413922b0011b0f5da0792d5fa6632c39ca989 /doc | |
parent | f1f51f5d4b2a4cdf9668fb90387c5d062f2a548b (diff) | |
parent | 4f8dfa16671afc35daeb974533aa44f75438ca9b (diff) |
Merge pull request #54141 from timothyqiu/bbcode-parse
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 668f9af4a2..9337339f73 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -36,10 +36,10 @@ </description> </method> <method name="append_text"> - <return type="int" enum="Error" /> + <return type="void" /> <argument index="0" name="bbcode" type="String" /> <description> - Parses [code]bbcode[/code] and adds tags to the tag stack as needed. Returns the result of the parsing, [constant OK] if successful. + Parses [code]bbcode[/code] and adds tags to the tag stack as needed. [b]Note:[/b] Using this method, you can't close a tag that was opened in a previous [method append_text] call. This is done to improve performance, especially when updating large RichTextLabels since rebuilding the whole BBCode every time would be slower. If you absolutely need to close a tag in a future method call, append the [member text] instead of using [method append_text]. </description> </method> @@ -130,10 +130,10 @@ </description> </method> <method name="parse_bbcode"> - <return type="int" enum="Error" /> + <return type="void" /> <argument index="0" name="bbcode" type="String" /> <description> - The assignment version of [method append_text]. Clears the tag stack and inserts the new content. Returns [constant OK] if parses [code]bbcode[/code] successfully. + The assignment version of [method append_text]. Clears the tag stack and inserts the new content. </description> </method> <method name="parse_expressions_for_values"> |