diff options
author | Will Nations <willnationsdev@gmail.com> | 2018-07-01 00:15:27 -0500 |
---|---|---|
committer | Will Nations <willnationsdev@gmail.com> | 2018-07-01 00:15:27 -0500 |
commit | a9ea06e73a9979210491ed88a57834e51bace1b9 (patch) | |
tree | 041b7fbb27c8f822d9e5a042fddd50a18cd786d4 /scene | |
parent | 0ffec7daf762b74c7453aa22b71865e63660901c (diff) |
Fix underline_meta not working in RichTextLabel
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/rich_text_label.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index f34559fc8d..ce2e3538da 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -324,7 +324,7 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int & color = _find_color(text, p_base_color); font_color_shadow = _find_color(text, p_font_color_shadow); underline = _find_underline(text); - if (_find_meta(text, &meta)) { + if (_find_meta(text, &meta) && underline_meta) { underline = true; } |