Remove update condition from LineEdit::update_placeholder_width

Placeholder with length greater than `max_length` are allowed, so there is no reason for those update condition.
It fixes the odd alignment of placeholder when it's length is greater than `max_length`
This commit is contained in:
simpuid 2020-03-18 02:22:45 +05:30
parent 989a223c5a
commit 43b2f75d64
1 changed files with 5 additions and 7 deletions

View File

@ -1710,7 +1710,6 @@ void LineEdit::update_cached_width() {
}
void LineEdit::update_placeholder_width() {
if ((max_length <= 0) || (placeholder_translated.length() <= max_length)) {
Ref<Font> font = get_font("font");
cached_placeholder_width = 0;
if (font != NULL) {
@ -1719,7 +1718,6 @@ void LineEdit::update_placeholder_width() {
}
}
}
}
void LineEdit::_clear_redo() {
_create_undo_state();