diff options
author | Yuri Sizov <yuris@humnom.net> | 2022-09-07 02:30:54 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-09-07 03:01:58 +0300 |
commit | 1459507ed28d68e0066ee2631c0b3671c1c76faa (patch) | |
tree | 4bfcd1d91582dd943a158ffec5b986b158207ee6 /modules/navigation/editor | |
parent | 432c4c40a9d29c127a5957944ca8f805dfb836ce (diff) |
Rename EditorInterface.get_editor_main_control to get_editor_main_screen
Diffstat (limited to 'modules/navigation/editor')
-rw-r--r-- | modules/navigation/editor/navigation_mesh_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/navigation/editor/navigation_mesh_editor_plugin.cpp b/modules/navigation/editor/navigation_mesh_editor_plugin.cpp index 5cdff7b52a..32abc52017 100644 --- a/modules/navigation/editor/navigation_mesh_editor_plugin.cpp +++ b/modules/navigation/editor/navigation_mesh_editor_plugin.cpp @@ -145,7 +145,7 @@ void NavigationMeshEditorPlugin::make_visible(bool p_visible) { NavigationMeshEditorPlugin::NavigationMeshEditorPlugin() { navigation_mesh_editor = memnew(NavigationMeshEditor); - EditorNode::get_singleton()->get_main_control()->add_child(navigation_mesh_editor); + EditorNode::get_singleton()->get_main_screen_control()->add_child(navigation_mesh_editor); add_control_to_container(CONTAINER_SPATIAL_EDITOR_MENU, navigation_mesh_editor->bake_hbox); navigation_mesh_editor->hide(); navigation_mesh_editor->bake_hbox->hide(); |