diff options
| author | Jeff Carr <[email protected]> | 2025-02-04 14:45:23 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-04 14:45:23 -0600 |
| commit | 8ce9ca882a4031ed9632125ce1efe45560bdeeed (patch) | |
| tree | 49fc92c1ca4f92e8866055c8beb8a61511631e91 /plugin.go | |
| parent | bf8cbddf1ac6b65c1a77dae0b7ccd910a9e96a3d (diff) | |
still a no
Diffstat (limited to 'plugin.go')
| -rw-r--r-- | plugin.go | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -115,8 +115,6 @@ func newaction(n *tree.Node, atype widget.ActionType) { w.deleteNode() } n.DeleteNode() - wRoot := me.treeRoot.TK.(*guiWidget) - wRoot.redoWindows(0, 0) default: log.Log(ERROR, "newaction() UNHANDLED Action Type =", atype, "WidgetType =", n.WidgetType, "Name =", n.ProgName()) } @@ -183,22 +181,3 @@ func (w *guiWidget) SetText(text string) { w.Show() } } - -/* -func (w *guiWidget) Set(val any) { - if w == nil { - log.Log(WARN, "Set() w == nil. val =", val) - return - } - log.Log(INFO, "Set() value =", val) - - w.value = val.(string) - if w.node.WidgetType == widget.Checkbox { - w.node.State.Checked = widget.GetBool(val) - w.setCheckbox() - } - if w.node.WidgetType == widget.Label { - w.labelN = widget.GetString(val) - } -} -*/ |
