diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-11 09:39:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 09:39:48 +0200 |
commit | 9d9ee2d4c25b1b24cd1cc7a0c63ffcb8453b32fd (patch) | |
tree | bd68db00bc4921178bf1e5d2ef671a5f540bb454 | |
parent | beb9ebcda00ac32a1dc8ec338aa61d7f0b03edc5 (diff) | |
parent | b783fa1416d5da9d78dec23f1f608b99cbdf5091 (diff) |
Merge pull request #41971 from nekomatata/richtextlabel-align-pointer
Fix RichTextLabel alignment for clickable regions
-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 c62fd24a5e..fb4931ea91 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -256,7 +256,7 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int & lh = line < l.height_caches.size() ? l.height_caches[line] : 1; \ line_ascent = line < l.ascent_caches.size() ? l.ascent_caches[line] : 1; \ line_descent = line < l.descent_caches.size() ? l.descent_caches[line] : 1; \ - if ((p_mode == PROCESS_DRAW) && (align != ALIGN_FILL)) { \ + if (align != ALIGN_FILL) { \ if (line < l.offset_caches.size()) { \ wofs = l.offset_caches[line]; \ } \ |