summaryrefslogtreecommitdiffstats
path: root/editor/plugins/mesh_library_editor_plugin.cpp
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2022-09-07 02:30:54 +0300
committerYuri Sizov <yuris@humnom.net>2022-09-07 03:01:58 +0300
commit1459507ed28d68e0066ee2631c0b3671c1c76faa (patch)
tree4bfcd1d91582dd943a158ffec5b986b158207ee6 /editor/plugins/mesh_library_editor_plugin.cpp
parent432c4c40a9d29c127a5957944ca8f805dfb836ce (diff)
downloadredot-engine-1459507ed28d68e0066ee2631c0b3671c1c76faa.tar.gz
Rename EditorInterface.get_editor_main_control to get_editor_main_screen
Diffstat (limited to 'editor/plugins/mesh_library_editor_plugin.cpp')
-rw-r--r--editor/plugins/mesh_library_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_library_editor_plugin.cpp b/editor/plugins/mesh_library_editor_plugin.cpp
index 319f6ee9de..420ebe5942 100644
--- a/editor/plugins/mesh_library_editor_plugin.cpp
+++ b/editor/plugins/mesh_library_editor_plugin.cpp
@@ -319,7 +319,7 @@ void MeshLibraryEditorPlugin::make_visible(bool p_visible) {
MeshLibraryEditorPlugin::MeshLibraryEditorPlugin() {
mesh_library_editor = memnew(MeshLibraryEditor);
- EditorNode::get_singleton()->get_main_control()->add_child(mesh_library_editor);
+ EditorNode::get_singleton()->get_main_screen_control()->add_child(mesh_library_editor);
mesh_library_editor->set_anchors_and_offsets_preset(Control::PRESET_TOP_WIDE);
mesh_library_editor->set_end(Point2(0, 22));
mesh_library_editor->hide();