diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
| commit | c4252d21031ed432405be6a4f008831732068101 (patch) | |
| tree | 35853d100781756ea826e6e44d2a61340faaa911 /windowReposNew.go | |
| parent | 9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (diff) | |
maybe locks will work. maybe I can make a global repos.pb file?
Diffstat (limited to 'windowReposNew.go')
| -rw-r--r-- | windowReposNew.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/windowReposNew.go b/windowReposNew.go index 2469205..3651d82 100644 --- a/windowReposNew.go +++ b/windowReposNew.go @@ -93,7 +93,7 @@ func makeReposWinNew() *gadgets.GenericWindow { if !me.forge.Config.IsFavorite(repo.GetGoPath()) { continue } - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } // make the window for the first time @@ -117,7 +117,7 @@ func makeReposWinNew() *gadgets.GenericWindow { if me.forge.Config.IsReadOnly(repo.GetGoPath()) { continue } - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } // make the window for the first time @@ -138,7 +138,7 @@ func makeReposWinNew() *gadgets.GenericWindow { all := me.forge.Repos.SortByFullPath() for all.Scan() { repo := all.Next() - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } // display the protobuf |
