fix(ui): match origin dropdown height to workbench dropdown (#231)
Some checks failed
Build and Test / build (pull_request) Has been cancelled

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.
This commit is contained in:
forbes
2026-02-14 19:15:51 -06:00
parent 4cb8a3a1ec
commit 79501bd5ca

View File

@@ -1207,6 +1207,7 @@ Gui--OriginSelectorWidget {
padding: 4px 8px;
min-width: 70px;
max-width: 120px;
min-height: 20px;
}
Gui--OriginSelectorWidget:hover {