Skip to content

Commit 64c97ba

Browse files
committed
Set columnspan=2 of wobble toggle to avoid unnecessary stretch
1 parent b0312eb commit 64c97ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/instamatic/gui/ctrl_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(self, parent):
7070
variable=self.var_alpha_wobbler_on,
7171
command=self.toggle_alpha_wobbler,
7272
)
73-
b_wobble.grid(row=4, column=2, sticky='W')
73+
b_wobble.grid(row=4, column=2, sticky='W', columnspan=2)
7474

7575
e_stage_x = Spinbox(frame, textvariable=self.var_stage_x, **stage)
7676
e_stage_x.grid(row=6, column=1, sticky='EW')

0 commit comments

Comments
 (0)