From 876ac8b457734024839129a75012e417abee1359 Mon Sep 17 00:00:00 2001 From: Giganzo <158825920+Giganzo@users.noreply.github.com> Date: Sat, 17 Jan 2026 14:44:04 +0100 Subject: [PATCH] Add inner tab styling to Manage Theme Items dialog --- editor/scene/gui/theme_editor_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/scene/gui/theme_editor_plugin.cpp b/editor/scene/gui/theme_editor_plugin.cpp index 8baaca6822..9e5a089e96 100644 --- a/editor/scene/gui/theme_editor_plugin.cpp +++ b/editor/scene/gui/theme_editor_plugin.cpp @@ -2130,6 +2130,7 @@ ThemeItemEditorDialog::ThemeItemEditorDialog(ThemeTypeEditor *p_theme_type_edito // Import Items tab. TabContainer *import_tc = memnew(TabContainer); + import_tc->set_theme_type_variation("TabContainerInner"); import_tc->set_tab_alignment(TabBar::ALIGNMENT_CENTER); tc->add_child(import_tc); tc->set_tab_title(1, TTR("Import Items"));