diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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) */ }) } |
