diff options
| author | Jeff Carr <[email protected]> | 2024-02-06 20:40:13 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-06 20:40:13 -0600 |
| commit | 2aed14a60cbb9208f8f9a507c83a3dd297a93640 (patch) | |
| tree | 85081da45e1914f84d1efadfdf94e9fbc8abaf94 /textbox.go | |
| parent | a7ad4af45c4adbb70da457e7e925c93ddac85251 (diff) | |
allow Windows to be made directly off the binary tree
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'textbox.go')
| -rw-r--r-- | textbox.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -20,6 +20,10 @@ func (parent *Node) NewTextbox(name string) *Node { return newNode } +func (parent *Node) NewEntrybox(name string) *Node { + return parent.NewEntryLine(name) +} + func (parent *Node) NewEntryLine(name string) *Node { newNode := parent.newNode(name, widget.Textbox) newNode.defaultS = name |
