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