summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-19 06:41:21 -0600
committerJeff Carr <[email protected]>2024-01-19 06:41:21 -0600
commitdbf0a6428539fd44ffe39fb3399735c948e2429b (patch)
tree9d69a6f578ba90e39abe02d86ae218cf509b7ccc
parentf7bb1084ca117315fc293d077a8e4e24ccfe7cd8 (diff)
don't expand by default
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--node.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.go b/node.go
index 0386938..59eb967 100644
--- a/node.go
+++ b/node.go
@@ -24,7 +24,7 @@ func (n *Node) newNode(title string, t widget.WidgetType) *Node {
newN.strings = make(map[string]int)
// set these defaults
- newN.expand = true
+ newN.expand = false
newN.visable = true
newN.pad = true
newN.borderless = false