diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 14:05:22 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 14:05:22 -0600 |
| commit | 3094c6283c63c90de2fd1c6c8e58b598143cab06 (patch) | |
| tree | fd43b9fcf82dbc168047da206e30c992cbbfd30b /main.go | |
| parent | 37d8e7573ee7c7afc2255854b170619415f2f5b5 (diff) | |
windows are combined
Signed-off-by: Jeff Carr <[email protected]>
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) -} |
