From 79501bd5ca12baa63b2ccfc41651622b4ee3346d Mon Sep 17 00:00:00 2001 From: forbes Date: Sat, 14 Feb 2026 19:15:51 -0600 Subject: [PATCH] fix(ui): match origin dropdown height to workbench dropdown (#231) Add min-height: 20px to OriginSelectorWidget in KindredCreate.qss so it renders at the same visual height as the WorkbenchComboBox. The two widgets use different Qt base classes (QToolButton vs QComboBox) with different intrinsic size hints, causing a height mismatch in the toolbar. --- src/Gui/Stylesheets/KindredCreate.qss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/Stylesheets/KindredCreate.qss b/src/Gui/Stylesheets/KindredCreate.qss index c5a239a9f3..5025fb8ae8 100644 --- a/src/Gui/Stylesheets/KindredCreate.qss +++ b/src/Gui/Stylesheets/KindredCreate.qss @@ -1207,6 +1207,7 @@ Gui--OriginSelectorWidget { padding: 4px 8px; min-width: 70px; max-width: 120px; + min-height: 20px; } Gui--OriginSelectorWidget:hover { -- 2.49.1