diff options
| author | Jeff Carr <[email protected]> | 2024-02-12 15:24:35 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-12 15:24:35 -0600 |
| commit | 4555b9f34d926f1a94691a1d2db5ed2d1520daa8 (patch) | |
| tree | c5669d8ab90c9583259c58889da1e4a8a443029e /main.go | |
| parent | cdc5743e67fd69c20a582d59ec2c47c804ae84ef (diff) | |
add a git commit button. I used it for this commit
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() |
