diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-21 15:36:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 15:36:26 +0200 |
commit | d33af87b61288fa960f0b1dc5fc5bd76800814d8 (patch) | |
tree | 965a11c058a33827331af7ab569d19a06b3be01e | |
parent | ee3b28e9af9e8b63efd440b47fc22aab4967409d (diff) | |
parent | 7db29919f22e43ef90b3cd54feba477e9ca629a5 (diff) |
Merge pull request #32849 from jahd2602/fix-26362
Add accept-dialog enter-key functionality to the Connect Dialog's Method textfield.
-rw-r--r-- | editor/connections_dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 1e5eabc24e..f5a01dfb04 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -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); |