fix(ui): match origin dropdown height to workbench dropdown (#231) #233
Reference in New Issue
Block a user
Delete Branch "fix/origin-dropdown-height"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #231
Adds
min-height: 20pxto theGui--OriginSelectorWidgetrule inKindredCreate.qss, matching the pattern used by other toolbar widgets. This ensures the origin selector renders at the same visual height as the workbench combo box.The mismatch occurs because
OriginSelectorWidgetis aQToolButtonwhileWorkbenchComboBoxis aQComboBox— different Qt base classes with different intrinsic size hints.