diff options
| author | Jeff Carr <[email protected]> | 2025-05-23 10:34:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-05-23 10:34:50 -0500 |
| commit | 1068eb5aad207eea71ee5e51d1cc8be86e9410c8 (patch) | |
| tree | cd7b86d821d727dc8f8fd1e437ba7447c5f860f3 /table.go | |
| parent | 1418d4652e7f296eb7de08ccc4b0394db5a54303 (diff) | |
more work on protobuf tablesv0.22.30
Diffstat (limited to 'table.go')
| -rw-r--r-- | table.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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") |
