summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/main.go b/main.go
index 3e95eb9..fafd202 100644
--- a/main.go
+++ b/main.go
@@ -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()