diff options
Diffstat (limited to 'window.go')
| -rw-r--r-- | window.go | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -117,3 +117,22 @@ func (n *Node) TestDraw() { } return } + +func (n *Node) TestPB() { + if n == nil { + return + } + + a := getNewAction(me.rootNode, widget.Show) + + log.Info("gui.UpdateTable() TODO: move the widget update val logic here instead of tree") + + a.WidgetPB, err = me.widgets.Marshal() + if err != nil { + log.Info("unmarshal error", err) + return + } + sendActionToPlugin(a) + + return +} |
