diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 23:55:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 23:55:04 -0600 |
| commit | 6d59e0f0f7db343b00748a98e19286994fcbf19f (patch) | |
| tree | f539294e6a4ef8ac48f50ae3ac388573ec992cf8 /repolist.go | |
| parent | d18a8018cb95cd3218226639e6afa5b4e3f51af0 (diff) | |
more code cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'repolist.go')
| -rw-r--r-- | repolist.go | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/repolist.go b/repolist.go index c7106dc..229fa0d 100644 --- a/repolist.go +++ b/repolist.go @@ -277,17 +277,19 @@ func repoAllButtons(box *gui.Node) { } }) - grid1.NewButton("rescan all", func() { - for _, repo := range me.allrepos { - repo.newScan() - } - }) + /* + grid1.NewButton("rescan all", func() { + for _, repo := range me.allrepos { + repo.newScan() + } + }) - grid1.NewButton("repostatus.ListAll()", func() { - repostatus.ListAll() - }) + grid1.NewButton("repostatus.ListAll()", func() { + repostatus.ListAll() + }) - grid1.NewButton("repostatus.ScanGoSrc()", func() { - repostatus.ScanGoSrc() - }) + grid1.NewButton("repostatus.ScanGoSrc()", func() { + repostatus.ScanGoSrc() + }) + */ } |
