From 8f4f35188510627b85ae945d86837f27612f7351 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 5 Mar 2025 20:21:50 -0600 Subject: works in all pb tables --- windowRepos.go | 8 ++++++++ 1 file changed, 8 insertions(+) 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()) }) }) -- cgit v1.2.3