Skip to content

Commit

Permalink
fix: Align spin boxes and labels in GridPlan (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
gselzer authored Jul 18, 2024
1 parent 8e52e0f commit 8b5d1e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pymmcore_widgets/mda/_xy_bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ def __init__(
QFormLayout.FieldGrowthPolicy.AllNonFixedFieldsGrow
)
values_layout.addRow("Top:", self.top_edit)
values_layout.addRow("Left:", self.bottom_edit)
values_layout.addRow("Right:", self.left_edit)
values_layout.addRow("Bottom:", self.right_edit)
values_layout.addRow("Left:", self.left_edit)
values_layout.addRow("Right:", self.right_edit)
values_layout.addRow("Bottom:", self.bottom_edit)

top_layout = QHBoxLayout()
top_layout.setContentsMargins(0, 0, 0, 0)
Expand Down

0 comments on commit 8b5d1e6

Please sign in to comment.