diff options
| author | Jeff Carr <[email protected]> | 2024-01-20 17:17:48 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-20 17:17:48 -0600 |
| commit | 5f382cd5e317b7d76ff231e086de316fe5d4b626 (patch) | |
| tree | e58c8121776a12d503d62103e7e5e25b31812af2 /main.go | |
| parent | d67ace479ae36375cc7bd10f316c65081b5abd1b (diff) | |
more button cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -26,8 +26,9 @@ func main() { autotypistWindow() repoworld() - log.Sleep(.3) - // hidePerfect() + + // keeps the app alive + // TODO: rescan the status of the repos every so often? gui.Watchdog() } @@ -78,18 +79,12 @@ func addRepo(grid *gui.Node, path string, master string, devel string, user stri } func autotypistWindow() { - /* - me.autotypistWindow = gadgets.NewBasicWindow(me.myGui, "autotypist for GO & git. it types faster than you can.") - me.autotypistWindow.Make() - me.autotypistWindow.StandardExit() - - box := me.autotypistWindow.Box() - me.autotypistWindow.Draw() - */ win := me.myGui.NewWindow("autotypist for GO & git. it types faster than you can.") box := win.NewBox("bw hbox", true) + globalDisplayOptions(box) globalBuildOptions(box) + globalTestingOptions(box) globalResetOptions(box) } |
