summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-13 09:18:04 -0600
committerJeff Carr <[email protected]>2024-02-13 09:18:04 -0600
commit74ce202f73574c122f893e5cd601a39d31168648 (patch)
tree3222f5bd5041c6bd16978dc62ee6b77a597f03d1 /main.go
parentf5dc43b75b1f455d4bfa58fa572fc589e2890ffe (diff)
general updates
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/main.go b/main.go
index fafd202..a5a549e 100644
--- a/main.go
+++ b/main.go
@@ -4,6 +4,7 @@ import (
"embed"
"time"
+ "go.wit.com/lib/debugger"
"go.wit.com/log"
"go.wit.com/gui"
@@ -20,12 +21,14 @@ func main() {
me.myGui.InitEmbed(resToolkit)
me.myGui.Default()
- me.autotypistWindow = me.myGui.NewWindow("autotypist for GO & git. it types faster than you can.")
+ me.autotypistWindow = me.myGui.NewWindow("autotypist: it types faster than you can.")
box := me.autotypistWindow.NewBox("bw hbox", true)
vbox1 := box.NewVerticalBox("BOX1")
globalDisplayOptions(vbox1)
- debuggerBox(vbox1)
+ if debugger.ArgDebug() {
+ debuggerBox(vbox1)
+ }
vbox2 := box.NewVerticalBox("BOX2")
globalBuildOptions(vbox2)
@@ -70,7 +73,7 @@ func main() {
})
/*
s := fmt.Sprint(duration)
- me.autoWorkingPwd.SetText(s)
+ // me.autoWorkingPwd.SetText(s)
*/
})
}