add possibility to use only one color

This commit is contained in:
Hana 2022-11-23 21:47:22 +01:00
parent f05a55ef95
commit 125d7deaff
1 changed files with 4 additions and 0 deletions

View File

@ -3860,6 +3860,10 @@ void RichTextLabel::append_text(const String &p_bbcode) {
Color color2 = Color::from_string(subtag_b[1], fallback_color);
set_cell_row_background_color(color1, color2);
}
if (subtag_b.size() == 1) {
Color color1 = Color::from_string(subtag_a[1], fallback_color);
set_cell_row_background_color(color1, color1);
}
}
}
}