diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-23 00:26:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 00:26:35 +0100 |
commit | 649aa547a3a56bcdf2ed2a93b919b7f71705c243 (patch) | |
tree | de76039702906238b3187d4a57454407642e270d /editor | |
parent | 2b61d02f7ef5cd820020747f55107c6339324495 (diff) | |
parent | 1422c756edd966f71edd477da5e7c7a6afed569c (diff) |
Merge pull request #57060 from KoBeWi/you_have_1_completion_request
Diffstat (limited to 'editor')
-rw-r--r-- | editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 4669e56e20..fb36bfc5e5 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1909,7 +1909,7 @@ CodeTextEditor::CodeTextEditor() { text_editor->connect("gui_input", callable_mp(this, &CodeTextEditor::_text_editor_gui_input)); text_editor->connect("caret_changed", callable_mp(this, &CodeTextEditor::_line_col_changed)); text_editor->connect("text_changed", callable_mp(this, &CodeTextEditor::_text_changed)); - text_editor->connect("request_code_completion", callable_mp(this, &CodeTextEditor::_complete_request)); + text_editor->connect("code_completion_requested", callable_mp(this, &CodeTextEditor::_complete_request)); TypedArray<String> cs; cs.push_back("."); cs.push_back(","); |