diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-24 16:17:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 16:17:25 +0200 |
commit | 982774e639ad4c98aa9459cd029c505b01fee4a8 (patch) | |
tree | fd0307996896f374bd006cecb29a98948a932066 /scene/gui/text_edit.cpp | |
parent | 9d347a2f2487d28cee8d11ed9a7ac7615b4c91f3 (diff) | |
parent | 63e6b1ecce015147b7b90a46961bac6d7299cf67 (diff) |
Merge pull request #33033 from volzhs/fix-tooltip
Fix rendering tooltip
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r-- | scene/gui/text_edit.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 5e548b7715..4e45f86d38 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -1723,7 +1723,9 @@ void TextEdit::_notification(int p_what) { end = font->get_string_size(l.substr(0, l.rfind(String::chr(0xFFFF)))).x; } - draw_string(font, hint_ofs + sb->get_offset() + Vector2(0, font->get_ascent() + font->get_height() * i + spacing), l.replace(String::chr(0xFFFF), ""), font_color); + Point2 round_ofs = hint_ofs + sb->get_offset() + Vector2(0, font->get_ascent() + font->get_height() * i + spacing); + round_ofs = round_ofs.round(); + draw_string(font, round_ofs, l.replace(String::chr(0xFFFF), ""), font_color); if (end > 0) { Vector2 b = hint_ofs + sb->get_offset() + Vector2(begin, font->get_height() + font->get_height() * i + spacing - 1); draw_line(b, b + Vector2(end - begin, 0), font_color); |