Merge pull request #32849 from jahd2602/fix-26362

Add accept-dialog enter-key functionality to the Connect Dialog's Method textfield.
This commit is contained in:
Rémi Verschelde 2019-10-21 15:36:26 +02:00 committed by GitHub
commit d33af87b61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,6 +417,7 @@ ConnectDialog::ConnectDialog() {
dst_method = memnew(LineEdit);
dst_method->set_h_size_flags(SIZE_EXPAND_FILL);
dst_method->connect("text_entered", this, "_builtin_text_entered");
dstm_hb->add_child(dst_method);
advanced = memnew(CheckButton);