diff --git a/README.md b/README.md index 2895364..c8865c3 100644 --- a/README.md +++ b/README.md @@ -133,9 +133,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 @@ -148,7 +148,7 @@ if isMainModule: main() ``` -Which results in the following: +Which results in the following (with Darkmode enabled): ![](images/bundler.png) diff --git a/images/bundler.png b/images/bundler.png index e5b3193..17e67aa 100644 Binary files a/images/bundler.png and b/images/bundler.png differ