mirror of
https://github.com/godotengine/godot.git
synced 2025-03-01 23:21:39 +08:00
Merge pull request #37642 from dreamsComeTrue/rich-text-strike-fix
Calculate strike-through y-position correctly (RichTexteLabel)
This commit is contained in:
commit
2c6affe084
@ -608,7 +608,7 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int &
|
|||||||
} else if (strikethrough) {
|
} else if (strikethrough) {
|
||||||
Color uc = color;
|
Color uc = color;
|
||||||
uc.a *= 0.5;
|
uc.a *= 0.5;
|
||||||
int uy = y + lh / 2 - line_descent + 2;
|
int uy = y + lh - (line_ascent + line_descent) / 2;
|
||||||
float strikethrough_width = 1.0;
|
float strikethrough_width = 1.0;
|
||||||
#ifdef TOOLS_ENABLED
|
#ifdef TOOLS_ENABLED
|
||||||
strikethrough_width *= EDSCALE;
|
strikethrough_width *= EDSCALE;
|
||||||
|
Loading…
Reference in New Issue
Block a user