Merge pull request #34633 from qarmin/lineedit_signal

Don't try to connect "text_entered" signal to nodes other than LineEdit
This commit is contained in:
Rémi Verschelde 2019-12-31 12:54:48 +01:00 committed by GitHub
commit 406dac1917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -444,7 +444,9 @@ bool AcceptDialog::has_autowrap() {
void AcceptDialog::register_text_enter(Node *p_line_edit) {
ERR_FAIL_NULL(p_line_edit);
p_line_edit->connect("text_entered", this, "_builtin_text_entered");
LineEdit *line_edit = Object::cast_to<LineEdit>(p_line_edit);
if (line_edit)
line_edit->connect("text_entered", this, "_builtin_text_entered");
}
void AcceptDialog::_update_child_rects() {