summaryrefslogtreecommitdiff
path: root/treeInit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-13 20:11:53 -0600
committerJeff Carr <[email protected]>2025-02-13 20:11:53 -0600
commita16207bd1e2a46245175fa0100109a59035384c4 (patch)
tree7d056b4a196c7e6ef15151a3ecbb0045cfc78168 /treeInit.go
parent514b39e3825d39adf540bf67dc4ea8115007e3d7 (diff)
stubbed in tables
Diffstat (limited to 'treeInit.go')
-rw-r--r--treeInit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/treeInit.go b/treeInit.go
index 57db353..27153e2 100644
--- a/treeInit.go
+++ b/treeInit.go
@@ -55,7 +55,6 @@ func PluginChannel() chan widget.Action {
func initTree() *tree.TreeInfo {
t := tree.New()
t.PluginName = PLUGIN
- t.NodeAction = newaction
t.Add = newAdd
t.SetTitle = setTitle
t.SetLabel = setLabel
@@ -64,6 +63,7 @@ func initTree() *tree.TreeInfo {
t.SetChecked = setChecked
t.ToolkitClose = toolkitClose
t.ShowTable = showTable
+ t.Show = showTable
return t
}