diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 17:41:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 17:41:59 -0500 |
| commit | 95d1f6fc7c6af1565749979d1ac7a85fbb311de6 (patch) | |
| tree | 2fd90a03cdaf82c9052792e76139f248dc221e0b /doGui.go | |
| parent | d011972b708cb5cab8e95c1c5f9459c3a451c277 (diff) | |
more fixes. almost works againv0.22.130
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -39,10 +39,6 @@ func doGui() { writeDebianControlFile(me.repo) }) - group1.NewButton("update gui", func() { - updateControl(cbox) - }) - group1.NewButton("dump repo.Control", func() { // log.Info("CONTROL:", me.repo.Control) for v := range me.repo.Control { @@ -63,6 +59,8 @@ func doGui() { grid := win.Middle.RawGrid() cbox = newControl(grid) + + updateControl(cbox) } // This initializes the control box |
