Merge pull request #78183 from bruvzg/rtl_tag_split

[RTL] Fix parsing tags with multiple features.
This commit is contained in:
Rémi Verschelde 2023-06-13 16:03:15 +02:00 committed by GitHub
commit 49243a9a98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4478,7 +4478,7 @@ void RichTextLabel::append_text(const String &p_bbcode) {
int fnt_size = -1;
for (int i = 1; i < subtag.size(); i++) {
Vector<String> subtag_a = subtag[i].split("=", true, 2);
Vector<String> subtag_a = subtag[i].split("=", true, 1);
_normalize_subtags(subtag_a);
if (subtag_a.size() == 2) {