diff options
author | Tomasz Chabora <kobewi4e@gmail.com> | 2020-12-06 16:09:18 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-09-18 13:08:54 +0200 |
commit | 882a4f890620df1b029bc5de0aa58c72dd087d61 (patch) | |
tree | f76e3fd1191c2f0376f43686db26228434090dfc /modules/mono | |
parent | 4ab3fdcda07bf700b33eb7c85f53826b2464c02f (diff) |
Port remaining connections to callable_mp
Diffstat (limited to 'modules/mono')
-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() { |