works in all pb tables
This commit is contained in:
parent
cad4ed3d29
commit
8f4f351885
|
@ -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())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue