diff options
author | Hana <48352564+Piralein@users.noreply.github.com> | 2022-11-23 21:47:22 +0100 |
---|---|---|
committer | Hana <48352564+Piralein@users.noreply.github.com> | 2022-11-23 21:47:22 +0100 |
commit | 125d7deaff1641d118943f56ef1a2a5b3cd34327 (patch) | |
tree | 57aac068d7312ec8a6600eb7006eb1d869625d3a /scene/gui | |
parent | f05a55ef9579fdcd7928b528dbc66dc11b039948 (diff) |
add possibility to use only one color
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/rich_text_label.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 889610e071..a54805ce56 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -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); + } } } } |