diff options
author | FireForge <67974470+fire-forge@users.noreply.github.com> | 2022-05-26 21:12:09 -0500 |
---|---|---|
committer | FireForge <67974470+fire-forge@users.noreply.github.com> | 2022-05-26 21:19:15 -0500 |
commit | eb573da2b582c3ad0cb0585cd30b1005cd1cf1eb (patch) | |
tree | 87c2061b3e5c64fac4b308bb4cb0df1eea7c64df /editor/project_settings_editor.cpp | |
parent | 9d28e1027636ebf1750a65105f6a23a17210813d (diff) | |
download | redot-engine-eb573da2b582c3ad0cb0585cd30b1005cd1cf1eb.tar.gz |
Use "odd" style for TabContainers on base BG color
- Use the "odd" style for TabContainers that are on a background with the same color as the default TabContainer background color to add contrast
Diffstat (limited to 'editor/project_settings_editor.cpp')
-rw-r--r-- | editor/project_settings_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp index 14a0427e18..5238c8f50c 100644 --- a/editor/project_settings_editor.cpp +++ b/editor/project_settings_editor.cpp @@ -560,6 +560,7 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) { tab_container = memnew(TabContainer); tab_container->set_use_hidden_tabs_for_min_size(true); + tab_container->set_theme_type_variation("TabContainerOdd"); add_child(tab_container); VBoxContainer *general_editor = memnew(VBoxContainer); |