Browse Source

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

Juan Linietsky 7 years ago
parent
commit
b9730a6956
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/gui/line_edit.cpp

+ 1 - 1
scene/gui/line_edit.cpp

@@ -642,7 +642,7 @@ void LineEdit::_notification(int p_what) {
 			int char_ofs = window_pos;
 			int char_ofs = window_pos;
 
 
 			int y_area = height - style->get_minimum_size().height;
 			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();
 			int font_ascent = font->get_ascent();