diff options
author | Allen Pestaluky <allenpestaluky@gmail.com> | 2024-10-15 15:07:01 -0400 |
---|---|---|
committer | Allen Pestaluky <allenpestaluky@gmail.com> | 2024-10-15 15:32:14 -0400 |
commit | 920fd47fa3d0f0c4f67f96d7d0085a676adbe22b (patch) | |
tree | cdbab4800dc05ce964cef79526938d7c467f6949 /editor | |
parent | af77100e394dcaca609b15bef815ed17475e51ed (diff) | |
download | redot-engine-920fd47fa3d0f0c4f67f96d7d0085a676adbe22b.tar.gz |
Fix `CONTAINER_PROJECT_SETTING_TAB_RIGHT` option of `EditorPlugin` to add to the right of all other tabs.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/editor_plugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/plugins/editor_plugin.cpp b/editor/plugins/editor_plugin.cpp index c8426bce73..29e4adb45a 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; } |