diff options
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) } |
