summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-19 02:48:56 -0600
committerJeff Carr <[email protected]>2025-02-19 17:39:45 -0600
commit31324ad08332c18d25e4499d4f1ff52d4043c5cd (patch)
tree509d21083fb75c77b84092b82c5e5015adcd4007
parentad299911f176735ffc039019ff98222525ed9d98 (diff)
string rows
-rw-r--r--table.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/table.go b/table.go
index 0d97562..8e288c5 100644
--- a/table.go
+++ b/table.go
@@ -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) {