You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
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`
(cherry picked from commit 43b2f75d64)
This commit is contained in:
@@ -1687,7 +1687,6 @@ void LineEdit::update_cached_width() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LineEdit::update_placeholder_width() {
|
void LineEdit::update_placeholder_width() {
|
||||||
if ((max_length <= 0) || (placeholder_translated.length() <= max_length)) {
|
|
||||||
Ref<Font> font = get_font("font");
|
Ref<Font> font = get_font("font");
|
||||||
cached_placeholder_width = 0;
|
cached_placeholder_width = 0;
|
||||||
if (font != NULL) {
|
if (font != NULL) {
|
||||||
@@ -1695,7 +1694,6 @@ void LineEdit::update_placeholder_width() {
|
|||||||
cached_placeholder_width += font->get_char_size(placeholder_translated[i]).width;
|
cached_placeholder_width += font->get_char_size(placeholder_translated[i]).width;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LineEdit::_clear_redo() {
|
void LineEdit::_clear_redo() {
|
||||||
|
|||||||
Reference in New Issue
Block a user