From 4555b9f34d926f1a94691a1d2db5ed2d1520daa8 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 12 Feb 2024 15:24:35 -0600 Subject: add a git commit button. I used it for this commit --- main.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'main.go') 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() -- cgit v1.2.3