diff options
Diffstat (limited to 'windowRepos.go')
| -rw-r--r-- | windowRepos.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/windowRepos.go b/windowRepos.go index 4ac40cb..14dfe42 100644 --- a/windowRepos.go +++ b/windowRepos.go @@ -127,6 +127,10 @@ func makeReposWin() *gadgets.GenericWindow { } // display the protobuf t = addWindowPB(insertWin, found) + f := func(repo *gitpb.Repo) { + log.Info("got to ReposTable.Custom() id =", repo.GetGoPath(), repo.GetCurrentVersion()) + } + t.Custom(f) log.Info("table has uuid", t.GetUuid()) }) @@ -149,6 +153,10 @@ func makeReposWin() *gadgets.GenericWindow { // make the window for the first time t = addWindowPB(insertWin, found) + f := func(repo *gitpb.Repo) { + log.Info("got to ReposTable.Custom() id =", repo.GetGoPath(), repo.GetCurrentVersion()) + } + t.Custom(f) log.Info("table has uuid", t.GetUuid()) }) }) |
