summaryrefslogtreecommitdiff
path: root/dropdown.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-08 11:06:50 -0500
committerJeff Carr <[email protected]>2023-04-08 11:06:50 -0500
commitda6a4363226f14aa893be02cb4a73cbf34fd77e7 (patch)
tree8f1f2c5d59e72961c87ff9c9ede0a4b3f2ab9c3f /dropdown.go
parentfa0718ff48a2ac2f8b54aed3060101f159484c86 (diff)
andlabs: the binary tree limps along again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'dropdown.go')
-rw-r--r--dropdown.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dropdown.go b/dropdown.go
index 5a4e366..b7a2695 100644
--- a/dropdown.go
+++ b/dropdown.go
@@ -20,7 +20,7 @@ func (n *Node) SetDropdownName(name string) {
}
func (n *Node) NewDropdown(name string) *Node {
- newNode := n.New(name, toolkit.Dropdown, nil)
+ newNode := n.newNode(name, toolkit.Dropdown, nil)
var a toolkit.Action
a.ActionType = toolkit.Add
@@ -33,7 +33,7 @@ func (n *Node) NewDropdown(name string) *Node {
}
func (n *Node) NewCombobox(name string) *Node {
- newNode := n.New(name, toolkit.Combobox, nil)
+ newNode := n.newNode(name, toolkit.Combobox, nil)
var a toolkit.Action
a.ActionType = toolkit.Add