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 /modules/mono/editor | |
parent | 7a0a3fea94e9fc70736ef93f2a024e023d53d6ed (diff) | |
parent | 882a4f890620df1b029bc5de0aa58c72dd087d61 (diff) |
Merge pull request #44143 from KoBeWi/callable_multiplayer
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/editor_internal_calls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/editor_internal_calls.cpp b/modules/mono/editor/editor_internal_calls.cpp index 6f42ad6916..91392c8f79 100644 --- a/modules/mono/editor/editor_internal_calls.cpp +++ b/modules/mono/editor/editor_internal_calls.cpp @@ -152,7 +152,7 @@ bool godot_icall_Internal_ScriptEditorEdit(Resource *p_resource, int32_t p_line, } void godot_icall_Internal_EditorNodeShowScriptScreen() { - EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT); + EditorNode::get_singleton()->editor_select(EditorNode::EDITOR_SCRIPT); } void godot_icall_Internal_EditorRunPlay() { |