summaryrefslogtreecommitdiff
path: root/table.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-05-23 10:34:50 -0500
committerJeff Carr <[email protected]>2025-05-23 10:34:50 -0500
commit1068eb5aad207eea71ee5e51d1cc8be86e9410c8 (patch)
treecd7b86d821d727dc8f8fd1e437ba7447c5f860f3 /table.go
parent1418d4652e7f296eb7de08ccc4b0394db5a54303 (diff)
more work on protobuf tablesv0.22.30
Diffstat (limited to 'table.go')
-rw-r--r--table.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/table.go b/table.go
index 5d13d5a..8f981e9 100644
--- a/table.go
+++ b/table.go
@@ -18,6 +18,14 @@ import (
"google.golang.org/protobuf/types/known/wrapperspb"
)
+func (me *TreeInfo) doWidgetsPB(w *guipb.Widget) {
+ log.Log(TREEWARN, "tree:", w.Id, w.Name)
+
+ for _, child := range w.Children {
+ me.doWidgetsPB(child)
+ }
+}
+
func (me *TreeInfo) doTable(a widget.Action) {
if a.TablePB == nil {
log.Log(TREE, "tree: action didn't have a Table PB")