simple table
This commit is contained in:
parent
be3e625f15
commit
5db0b57b31
19
doGui.go
19
doGui.go
|
@ -222,6 +222,25 @@ func drawWindow(win *gadgets.BasicWindow) {
|
|||
foundWin.Show()
|
||||
})
|
||||
|
||||
grid.NewButton("find merge to devel", func() {
|
||||
findMergeToDevel()
|
||||
t := me.found.NewTable("testFind2")
|
||||
t.AddStringFunc("repo", func(r *gitpb.Repo) string {
|
||||
return r.GetGoPath()
|
||||
})
|
||||
t.AddMasterVersion()
|
||||
t.AddState()
|
||||
t.ShowTable()
|
||||
/*
|
||||
t.AddStringFunc("zood", func(m *zoopb.Machine) string {
|
||||
return findVersion(m, "zood")
|
||||
})
|
||||
t.AddTimeFunc("age", func(m *zoopb.Machine) time.Time {
|
||||
return m.Laststamp.AsTime()
|
||||
})
|
||||
*/
|
||||
})
|
||||
|
||||
grid.NewButton("forge ConfigSave()", func() {
|
||||
me.forge.ConfigSave()
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue