Make line edit always vertically aligned, makes no sense otherwise. Fixes #17188
This commit is contained in:
parent
c02fb271fd
commit
b9730a6956
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue