summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-23 02:37:48 -0600
committerJeff Carr <[email protected]>2024-12-23 02:37:48 -0600
commitcc55a5ad7a0561ba8385e35d2ddf7fdf94555c75 (patch)
tree90b319b20e325e8972d77710a644e3590bef0a45 /doGui.go
parent30a4988f08f149ed22f4e770b822a9d87bf13f93 (diff)
start working on the GUI again for this
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/doGui.go b/doGui.go
index b412df5..3a07511 100644
--- a/doGui.go
+++ b/doGui.go
@@ -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()
})