From 920fd47fa3d0f0c4f67f96d7d0085a676adbe22b Mon Sep 17 00:00:00 2001 From: Allen Pestaluky Date: Tue, 15 Oct 2024 15:07:01 -0400 Subject: [PATCH] Fix `CONTAINER_PROJECT_SETTING_TAB_RIGHT` option of `EditorPlugin` to add to the right of all other tabs. --- editor/plugins/editor_plugin.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/editor/plugins/editor_plugin.cpp b/editor/plugins/editor_plugin.cpp index c8426bce737..29e4adb45a6 100644 --- a/editor/plugins/editor_plugin.cpp +++ b/editor/plugins/editor_plugin.cpp @@ -153,7 +153,6 @@ void EditorPlugin::add_control_to_container(CustomControlContainer p_location, C } break; case CONTAINER_PROJECT_SETTING_TAB_RIGHT: { ProjectSettingsEditor::get_singleton()->get_tabs()->add_child(p_control); - ProjectSettingsEditor::get_singleton()->get_tabs()->move_child(p_control, 1); } break; }