|
@@ -711,7 +711,8 @@ void LineEdit::_notification(int p_what) {
|
|
|
if (selected)
|
|
|
VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(Point2(x_ofs, y_ofs), Size2(char_width, caret_height)), selection_color);
|
|
|
|
|
|
- drawer.draw_char(ci, Point2(x_ofs, y_ofs + font_ascent), cchar, next, selected ? font_color_selected : font_color);
|
|
|
+ int yofs = y_ofs + (caret_height - font->get_height()) / 2;
|
|
|
+ drawer.draw_char(ci, Point2(x_ofs, yofs + font_ascent), cchar, next, selected ? font_color_selected : font_color);
|
|
|
|
|
|
if (char_ofs == cursor_pos && draw_caret) {
|
|
|
if (ime_text.length() == 0) {
|