diff options
Diffstat (limited to 'table.custom.go')
| -rw-r--r-- | table.custom.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/table.custom.go b/table.custom.go index abed9a5..c8672ae 100644 --- a/table.custom.go +++ b/table.custom.go @@ -10,17 +10,15 @@ package guipb -import "go.wit.com/log" - func (pb *Tables) Custom(w *Widget) { - log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", w) + // log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", w) if mycustom != nil { mycustom(w) } } func (pb *Table) Custom(w *Widget) { - log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", w) + // log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", w) if mycustom != nil { mycustom(w) } |
