diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-05-31 12:52:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 12:52:03 +0200 |
commit | 532e253a7c0544bfb4866fb00129cfa1d39fcd62 (patch) | |
tree | 3b636228558a1d352ee05d6e1acca6261169472e /editor/editor_about.cpp | |
parent | c881f607a90f6c6a7d8b5046ea155d881ede3ff1 (diff) | |
parent | eb573da2b582c3ad0cb0585cd30b1005cd1cf1eb (diff) | |
download | redot-engine-532e253a7c0544bfb4866fb00129cfa1d39fcd62.tar.gz |
Merge pull request #61455 from fire-forge/tab
Add color contrast to TabContainer backgrounds in the editor
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 |