diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 14:44:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 14:44:47 -0600 |
| commit | 1fdf786a72fd4af0c1acca45b250b5f66ef3e31b (patch) | |
| tree | 0f247e40f69c8bdce56574a3b608c78955b6b447 /node.go | |
| parent | ba70be3064c1d082eb0e9146562b7f07dd894fb0 (diff) | |
visable state is honored. TODO: fix hide/show
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'node.go')
| -rw-r--r-- | node.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ func (n *Node) newNode(title string, t widget.WidgetType) *Node { // set these defaults newN.expand = false - newN.visable = true + // honor the visable settings of the parent + newN.visable = n.visable newN.pad = true newN.borderless = false |
