From 65485930a20f65844d496b4ba47dec5b6ed70b91 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 9 Feb 2022 14:37:33 +0100 Subject: [PATCH] Call make_visible(false) instead of just hiding voxel_world_editor. This fixes #7. Thanks. --- world/voxel_world_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/voxel_world_editor.cpp b/world/voxel_world_editor.cpp index 7a95065..1643f22 100644 --- a/world/voxel_world_editor.cpp +++ b/world/voxel_world_editor.cpp @@ -471,7 +471,7 @@ VoxelWorldEditorPlugin::VoxelWorldEditorPlugin(EditorNode *p_node) { add_control_to_container(CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT, voxel_world_editor); } break; } - voxel_world_editor->hide(); + make_visible(false); } VoxelWorldEditorPlugin::~VoxelWorldEditorPlugin() {