Merge pull request #41520 from Tony-Goat/patch-1
Added string length checking to LineEdit.set_text()
This commit is contained in:
commit
a70038293c
1 changed files with 6 additions and 1 deletions
|
@ -1281,7 +1281,12 @@ void LineEdit::delete_text(int p_from_column, int p_to_column) {
|
|||
|
||||
void LineEdit::set_text(String p_text) {
|
||||
clear_internal();
|
||||
append_at_cursor(p_text);
|
||||
|
||||
if (p_text.length() > max_length) {
|
||||
append_at_cursor(p_text.substr(0, max_length));
|
||||
} else {
|
||||
append_at_cursor(p_text);
|
||||
}
|
||||
|
||||
if (expand_to_text_length) {
|
||||
minimum_size_changed();
|
||||
|
|
Loading…
Reference in a new issue