diff options
| author | Jeff Carr <[email protected]> | 2023-05-09 20:25:37 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-05-09 20:25:37 -0500 |
| commit | 26b06253d540fbcac2ae1372aa7fc0b1089bab98 (patch) | |
| tree | 9afc2600ce0633e85990f8376091d93fec7c6d3a /checkbox.go | |
| parent | 45ef7f37c4af0495ccf988f2f726aaea24a999e4 (diff) | |
more code cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'checkbox.go')
| -rw-r--r-- | checkbox.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkbox.go b/checkbox.go index 502acb4..db3eb19 100644 --- a/checkbox.go +++ b/checkbox.go @@ -7,7 +7,7 @@ func (n *Node) Checked() bool { } func (n *Node) NewCheckbox(name string) *Node { - newNode := n.newNode(name, toolkit.Checkbox, nil) + newNode := n.newNode(name, toolkit.Checkbox) a := newAction(newNode, toolkit.Add) sendAction(a) |
