diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -16,11 +16,6 @@ func main() { me = new(autoType) me.allrepos = make(map[string]*repo) - if args.TmpLog { - // send all log() output to a file in /tmp - log.SetTmp() - } - me.myGui = gui.New() me.myGui.InitEmbed(resToolkit) me.myGui.Default() @@ -28,8 +23,14 @@ func main() { me.autotypistWindow = me.myGui.NewWindow("autotypist for GO & git. it types faster than you can.") box := me.autotypistWindow.NewBox("bw hbox", true) - globalDisplayOptions(box) - globalBuildOptions(box) + vbox1 := box.NewVerticalBox("BOX1") + globalDisplayOptions(vbox1) + debuggerBox(vbox1) + + vbox2 := box.NewVerticalBox("BOX2") + globalBuildOptions(vbox2) + summaryBox(vbox2) + globalResetOptions(box) repolistWindow() |
