diff options
| author | Jeff Carr <[email protected]> | 2025-03-05 20:21:50 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-05 20:21:50 -0600 |
| commit | 8f4f35188510627b85ae945d86837f27612f7351 (patch) | |
| tree | bb5b8e8ce686b483476aaff99c50a29e3a907b8a /windowRepos.go | |
| parent | cad4ed3d29c45cd4a190c987af5d614050441120 (diff) | |
works in all pb tables
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()) }) }) |
