From 4391e8bed21f9ae791948108ab3724cd5498d4b9 Mon Sep 17 00:00:00 2001 From: Vincenzo Sicurella Date: Sun, 4 Aug 2024 04:23:33 -0400 Subject: [PATCH] fix colour panel resize bug --- Source/mapping_editors/KeyEditorControls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/mapping_editors/KeyEditorControls.cpp b/Source/mapping_editors/KeyEditorControls.cpp index 4335fab..4aa184d 100644 --- a/Source/mapping_editors/KeyEditorControls.cpp +++ b/Source/mapping_editors/KeyEditorControls.cpp @@ -204,7 +204,7 @@ void KeyEditorControls::resized() colourPalettePanel->setBounds(colourColumnX, 0, colourColumnWidth, h); colourPalettePanel->setIndentSize(contentMarginHeight, false); - colourPalettePanel->setTabBarDepth(headerHeight, false); + colourPalettePanel->setTabBarDepth(headerHeight, true); } void KeyEditorControls::selectionChanged()