diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-23 09:46:19 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 09:46:19 -0300 |
commit | a0ef77eaee427cf077ac884a8d3a956137ee615a (patch) | |
tree | 40bf21e1beae1a6883770d2ac0473222ff41ae65 /editor/editor_help_search.cpp | |
parent | 2d446771d6701bb77432b6df5a768e53c9a6c95d (diff) | |
parent | 5cecdfa8afb91a60305b429f5b738e27dadbc83f (diff) |
Merge pull request #51983 from reduz/remove-bind-vmethod
Entirely removes BIND_VMETHOD in favor of GDVIRTUAL
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index 2b5eee4c1f..e56b10720d 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -71,7 +71,7 @@ void EditorHelpSearch::_search_box_gui_input(const Ref<InputEvent> &p_event) { case KEY_DOWN: case KEY_PAGEUP: case KEY_PAGEDOWN: { - results_tree->call("_gui_input", key); + results_tree->gui_input(key); search_box->accept_event(); } break; default: |