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_export.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_export.cpp')
-rw-r--r-- | editor/project_export.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/project_export.cpp b/editor/project_export.cpp index 503eb5000b..70627d5e82 100644 --- a/editor/project_export.cpp +++ b/editor/project_export.cpp @@ -1064,6 +1064,7 @@ ProjectExportDialog::ProjectExportDialog() { sections = memnew(TabContainer); sections->set_use_hidden_tabs_for_min_size(true); + sections->set_theme_type_variation("TabContainerOdd"); settings_vb->add_child(sections); sections->set_v_size_flags(Control::SIZE_EXPAND_FILL); |