[RTL] Fix parsing tags with multiple features.

This commit is contained in:
bruvzg 2023-06-13 15:24:30 +03:00
parent 2b373f795c
commit 38b8e23206
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

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) {