summaryrefslogtreecommitdiffstats
path: root/editor/action_map_editor.cpp
diff options
context:
space:
mode:
authorFireForge <67974470+fire-forge@users.noreply.github.com>2022-05-26 21:12:09 -0500
committerFireForge <67974470+fire-forge@users.noreply.github.com>2022-05-26 21:19:15 -0500
commiteb573da2b582c3ad0cb0585cd30b1005cd1cf1eb (patch)
tree87c2061b3e5c64fac4b308bb4cb0df1eea7c64df /editor/action_map_editor.cpp
parent9d28e1027636ebf1750a65105f6a23a17210813d (diff)
downloadredot-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/action_map_editor.cpp')
-rw-r--r--editor/action_map_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/action_map_editor.cpp b/editor/action_map_editor.cpp
index 6333b402da..698390a61e 100644
--- a/editor/action_map_editor.cpp
+++ b/editor/action_map_editor.cpp
@@ -644,6 +644,7 @@ InputEventConfigurationDialog::InputEventConfigurationDialog() {
tab_container = memnew(TabContainer);
tab_container->set_use_hidden_tabs_for_min_size(true);
tab_container->set_v_size_flags(Control::SIZE_EXPAND_FILL);
+ tab_container->set_theme_type_variation("TabContainerOdd");
tab_container->connect("tab_selected", callable_mp(this, &InputEventConfigurationDialog::_tab_selected));
main_vbox->add_child(tab_container);