summaryrefslogtreecommitdiff
path: root/checkbox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-05-09 18:53:31 -0500
committerJeff Carr <[email protected]>2023-05-09 18:53:31 -0500
commite43f42a3ab5afa6fd72673df2a5bd9a7615694d2 (patch)
tree8f1729074a55ba2c43d88045b0a4c4e556ba13f5 /checkbox.go
parentc36725fa90acc47fe5c0650f93540b5d65a126b6 (diff)
more sendAction() cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'checkbox.go')
-rw-r--r--checkbox.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/checkbox.go b/checkbox.go
index cf4c1a3..502acb4 100644
--- a/checkbox.go
+++ b/checkbox.go
@@ -10,7 +10,6 @@ func (n *Node) NewCheckbox(name string) *Node {
newNode := n.newNode(name, toolkit.Checkbox, nil)
a := newAction(newNode, toolkit.Add)
- sendAction(a, newNode, n)
-
+ sendAction(a)
return newNode
}