diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-09-18 13:47:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 13:47:04 +0200 |
commit | e5594c26b14e75d8b75d1f697cf2bfbd6254a50c (patch) | |
tree | 8494286f576fd6bdcdec87eb344878d12e8d42c6 /editor/connections_dialog.cpp | |
parent | 7a0a3fea94e9fc70736ef93f2a024e023d53d6ed (diff) | |
parent | 882a4f890620df1b029bc5de0aa58c72dd087d61 (diff) |
Merge pull request #44143 from KoBeWi/callable_multiplayer
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 861d05f17a..c83011845b 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -810,7 +810,7 @@ void ConnectionsDock::_go_to_script(TreeItem &p_item) { } if (script.is_valid() && ScriptEditor::get_singleton()->script_goto_method(script, cd.method)) { - EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT); + EditorNode::get_singleton()->editor_select(EditorNode::EDITOR_SCRIPT); } } |