Skip to content

Commit bcdf40d

Browse files
committed
Fix subtle mispositionings of some GUI controls
No more text labels overlapping with input boxes!
1 parent 283c00d commit bcdf40d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

EC-Autoclicker.ahk

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Menus.Add(SZ_TABLE.Menu_Options, OptionsMenu)
181181
Menus.Add(SZ_TABLE.Menu_Help, HelpMenu)
182182
AutoclickerGui.MenuBar := Menus
183183

184-
AutoclickerGui.AddTab3("w250 h208 vTab", [
184+
AutoclickerGui.AddTab3("w248 h208 vTab", [
185185
SZ_TABLE.Tabs.General,
186186
SZ_TABLE.Tabs.Scheduling,
187187
SZ_TABLE.Tabs.Positioning,
@@ -226,19 +226,19 @@ makeCheckable(
226226
"General_SoundBeep_Checkbox"
227227
, AutoclickerGui.AddCheckbox("xs", "Play a &beep at")
228228
, 1
229-
, [AutoclickerGui.AddEdit("xp+88 yp-2 w36 vGeneral_SoundBeep_NumEdit Disabled Limit Number", "600")]
229+
, [AutoclickerGui.AddEdit("xp+90 yp-2 w36 vGeneral_SoundBeep_NumEdit Disabled Limit Number", "600")]
230230
)
231-
AutoclickerGui.AddText("xp+40 yp+2", "Hz at every click")
231+
AutoclickerGui.AddText("xp+42 yp+2", "Hz at every click")
232232

233233
AutoclickerGui["Tab"].UseTab(SZ_TABLE.Tabs.Scheduling)
234234

235235
makeCheckable(
236236
"Scheduling_PreStartDelay_Checkbox"
237237
, AutoclickerGui.AddCheckbox("Section", "&Delay before starting:")
238238
, 1
239-
, [AutoclickerGui.AddEdit("xp+122 yp-2 w50 vScheduling_PreStartDelay_NumEdit Disabled Limit Number", "0")]
239+
, [AutoclickerGui.AddEdit("xp+124 yp-2 w50 vScheduling_PreStartDelay_NumEdit Disabled Limit Number", "0")]
240240
)
241-
AutoclickerGui.AddText("xp+54 ys vScheduling_PreStartDelay_UnitText", "ms")
241+
AutoclickerGui.AddText("xp+56 ys vScheduling_PreStartDelay_UnitText", "ms")
242242

243243
AutoclickerGui.AddGroupBox("xs ys+25 w226 h148 Section", "Stop after")
244244

@@ -254,8 +254,8 @@ makeCheckable(
254254
, AutoclickerGui.AddCheckbox("xs+10 yp+25", "D&uration:")
255255
, Scheduling_StopAfterDurationToggled
256256
)
257-
AutoclickerGui.AddEdit("xp+65 yp-2 w45 vScheduling_StopAfterDuration_NumEdit Disabled Limit Number", "60")
258-
AutoclickerGui.AddText("xp+48 yp+2 vScheduling_StopAfterDuration_UnitText Disabled", "ms")
257+
AutoclickerGui.AddEdit("xp+67 yp-2 w45 vScheduling_StopAfterDuration_NumEdit Disabled Limit Number", "60")
258+
AutoclickerGui.AddText("xp+50 yp+2 vScheduling_StopAfterDuration_UnitText Disabled", "ms")
259259

260260
makeCheckable(
261261
"Scheduling_StopAfterTime_Checkbox"

0 commit comments

Comments
 (0)