diff options
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 |
