Skip to content

Commit

Permalink
Merge pull request godotengine#101532 from bruvzg/rtl_fix_fx_offset
Browse files Browse the repository at this point in the history
[RTL] Fix character effect offset.
  • Loading branch information
akien-mga committed Jan 14, 2025
2 parents 132223f + 88a719f commit 1ca03ad
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 1ca03ad

Please sign in to comment.