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/editor_about.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/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 88ad2633c0..6fafb2d91a 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -163,6 +163,7 @@ EditorAbout::EditorAbout() { tc->set_tab_alignment(TabBar::ALIGNMENT_CENTER); tc->set_custom_minimum_size(Size2(400, 200) * EDSCALE); tc->set_v_size_flags(Control::SIZE_EXPAND_FILL); + tc->set_theme_type_variation("TabContainerOdd"); vbc->add_child(tc); // Authors |