summaryrefslogtreecommitdiff
path: root/treeDraw.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-06 19:34:26 -0600
committerJeff Carr <[email protected]>2025-02-06 19:34:26 -0600
commit176831d0f3b7160e3c8fed56c481f43163e9a2b4 (patch)
treeb936b4d6c49e58dbbd205a2c57000a663f814527 /treeDraw.go
parent2a5734892a85804b6c44a0cd8dd22d20fed21d96 (diff)
trying to debug grid spacing
Diffstat (limited to 'treeDraw.go')
-rw-r--r--treeDraw.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/treeDraw.go b/treeDraw.go
index 39c8edc..ec63df5 100644
--- a/treeDraw.go
+++ b/treeDraw.go
@@ -148,7 +148,7 @@ func (w *guiWidget) Show() {
}
*/
- if w.node.Hidden() {
+ if w.Hidden() {
return
}
@@ -169,7 +169,7 @@ func (w *guiWidget) Show() {
// this comes from the application developer
// finally, check if the widget State is hidden or not
- if w.node.Hidden() {
+ if w.Hidden() {
// log.Log(GOCUI, "Show() w.node.Hidden() = false. not drawing", w.cuiName, w.String())
// don't display hidden widgets
return