From 599300333422f76838dc9c7cfaf68557307ec91f Mon Sep 17 00:00:00 2001 From: Armando Rivera Date: Sat, 14 Oct 2023 13:54:34 -0400 Subject: [PATCH] Minor widget alignment tweak --- examples/AppBundler/GUI/AppBundler.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/AppBundler/GUI/AppBundler.nim b/examples/AppBundler/GUI/AppBundler.nim index e3117e2..45bd1f1 100644 --- a/examples/AppBundler/GUI/AppBundler.nim +++ b/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() \ No newline at end of file + main()