Skip to content

Commit

Permalink
[RTL] Fix character effect offset.
Browse files Browse the repository at this point in the history
  • Loading branch information
bruvzg committed Jan 14, 2025
1 parent b3a44e8 commit 88a719f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/gui/rich_text_label.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@ int RichTextLabel::_draw_line(ItemFrame *p_frame, int p_line, const Vector2 &p_o
custom_fx_ok = effect_status;

char_xform = charfx->transform;
fx_offset += charfx->offset;
fx_offset = charfx->offset;
font_color = charfx->color;
frid = charfx->font;
gl = charfx->glyph_index;
Expand Down

0 comments on commit 88a719f

Please sign in to comment.