From 36073faed5babe12a4f1a34e7e74fe52516b8861 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 17 Dec 2024 06:36:00 -0600 Subject: lots of changes here and in gitpb --- subitPatches.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subitPatches.go') 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 -- cgit v1.2.3