Minor widget alignment tweak

master
Armando Rivera 7 months ago
parent 4263f4fd0a
commit 5993003334
  1. 6
      examples/AppBundler/GUI/AppBundler.nim

@ -111,9 +111,9 @@ proc main() =
# btnCredits = newButton(mainWin, "Load", 680, 160, 100, 25, nil)
txtIdent.anchor=akWidth
line2 = newSeparator(mainWin, 20, 240, 750)
line2 = newSeparator(mainWin, 20, 250, 750)
chkLaunch = newCheckBox(mainWin, "Launch Application?", 390, 270, 150, 25)
chkLaunch = newCheckBox(mainWin, "Launch Application?", 330, 270, 150, 25)
btnExec = newButton(mainWin, "🟢 Execute", 680, 270, 100, 25, createAppBundle)
chkLaunch.anchor=akLeft + akRight + akBottom; btnExec.anchor=akRight + akBottom
@ -123,4 +123,4 @@ proc main() =
if isMainModule:
main()
main()

Loading…
Cancel
Save