diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -23,7 +23,13 @@ func main() { // me.myGui.LoadToolkit("nocui") me.myGui.Default() - autotypistWindow() + // autotypistWindow() + + me.mainWindow = me.myGui.NewWindow("GUI release manager") + me.mainBox = me.mainWindow.NewBox("bw hbox", true) + + globalDisplayOptions(me.mainBox) + repoworld() for _, repo := range me.allrepos { @@ -32,7 +38,7 @@ func main() { } if release.win == nil { log.Info("Creating the Release Window") - createReleaseWindow() + createReleaseWindow(me.mainBox) globalDisplaySetRepoState() // open the repo window reposwin.Toggle() @@ -72,10 +78,3 @@ func main() { me.autoWorkingPwd.SetText(s) }) } - -func autotypistWindow() { - win := me.myGui.NewWindow("autotypist for GO & git. it types faster than you can.") - box := win.NewBox("bw hbox", true) - - globalDisplayOptions(box) -} |
