diff options
| author | Jeff Carr <[email protected]> | 2024-12-23 02:37:48 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-23 02:37:48 -0600 |
| commit | cc55a5ad7a0561ba8385e35d2ddf7fdf94555c75 (patch) | |
| tree | 90b319b20e325e8972d77710a644e3590bef0a45 /doGui.go | |
| parent | 30a4988f08f149ed22f4e770b822a9d87bf13f93 (diff) | |
start working on the GUI again for this
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12,7 +12,7 @@ func doGui() { me.myGui = gui.New() me.myGui.Default() - me.mainWindow = gadgets.RawBasicWindow("submit & test patchsets") + me.mainWindow = gadgets.RawBasicWindow("Forge: use this to submit patches") me.mainWindow.Make() me.mainWindow.Show() me.mainbox = me.mainWindow.Box() @@ -28,12 +28,13 @@ func doGui() { // processing is done. update the repo summary box me.summary.Update() + me.summary.submitB.Disable() me.Enable() // intermittently scans the status indefinitly me.repos.View.Watchdog(func() { - log.Info("In main()") + log.Info("Watchdog in doGui()") // processing is done. update the repo summary box me.summary.Update() }) |
