string rows

This commit is contained in:
Jeff Carr 2025-02-19 02:48:56 -06:00
parent ad299911f1
commit 31324ad083
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,11 @@ import (
)
func showTable(t *guipb.Table) {
log.Info("should show table here")
log.Info("gocui: should show table here")
if t == nil {
return
}
log.Info("gocui: table.Title", t.Title)
}
func enableWidget(n *tree.Node) {