diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -27,7 +27,13 @@ func main() { // me.myGui.LoadToolkit("nocui") me.myGui.Default() - autotypistWindow() + 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) + globalResetOptions(box) + repolistWindow() // process everything on the command line @@ -69,13 +75,3 @@ func main() { */ }) } - -func autotypistWindow() { - 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) - globalResetOptions(box) - -} |
