Fix assertion type combo box height in TestStepDialog

Set minimum height (28px) on type combo box to display selection.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rob 2026-01-17 14:02:28 -04:00
parent 4176573e9d
commit 7110e82eca
1 changed files with 1 additions and 0 deletions

View File

@ -301,6 +301,7 @@ class TestStepDialog(QDialog):
# Type dropdown
type_combo = QComboBox()
type_combo.setMinimumHeight(28)
for type_id, display_name, tooltip in self.ASSERTION_TYPES:
type_combo.addItem(display_name, type_id)
idx = type_combo.count() - 1