diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 06:36:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 06:36:00 -0600 |
| commit | 36073faed5babe12a4f1a34e7e74fe52516b8861 (patch) | |
| tree | e916ea5753a670a02b9b0be3fb9228a6a7e3e86f /subitPatches.go | |
| parent | ac029ee52ce434adaf88f13fa6e45f9b3d30c275 (diff) | |
lots of changes here and in gitpb
Diffstat (limited to 'subitPatches.go')
| -rw-r--r-- | subitPatches.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subitPatches.go b/subitPatches.go index bad9786..495013b 100644 --- a/subitPatches.go +++ b/subitPatches.go @@ -57,7 +57,7 @@ func submitPatchesBox(box *gui.Node) *patchSummary { s.grid.NewButton("Update Patch Counts", func() { var repocount, patchcount int // broken after move to forge protobuf - all := me.forge.Repos.SortByGoPath() + all := me.forge.Repos.SortByFullPath() for all.Scan() { repo := all.Next() if repo.GetReadOnly() { @@ -75,7 +75,7 @@ func submitPatchesBox(box *gui.Node) *patchSummary { repocount = 0 patchcount = 0 // broken after move to forge protobuf - all = me.forge.Repos.SortByGoPath() + all = me.forge.Repos.SortByFullPath() for all.Scan() { repo := all.Next() if repo.GetReadOnly() { @@ -189,7 +189,7 @@ func (s *patchSummary) Update() { var userT, develT, masterT int // var userP, develP, masterP int // broken after move to forge protobuf - all := me.forge.Repos.SortByGoPath() + all := me.forge.Repos.SortByFullPath() for all.Scan() { repo := all.Next() total += 1 |
