Make line edit always vertically aligned, makes no sense otherwise. Fixes #17188

This commit is contained in:
Juan Linietsky 2018-08-10 13:15:26 -03:00
parent c02fb271fd
commit b9730a6956

View file

@ -642,7 +642,7 @@ void LineEdit::_notification(int p_what) {
int char_ofs = window_pos;
int y_area = height - style->get_minimum_size().height;
int y_ofs = style->get_offset().y;
int y_ofs = style->get_offset().y + (y_area - font->get_height()) / 2;
int font_ascent = font->get_ascent();