summaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-13 22:02:12 -0600
committerJeff Carr <[email protected]>2024-01-13 22:02:12 -0600
commit47b15946de10a75cda026a7317a90d4857b453c8 (patch)
treeab6a8c085226263982d3b19f2913e540707af2a1 /debug.go
parent4ef8409eeadcd4a359b7593b5ea35f9f523bfb64 (diff)
work on hiding widgetsv0.12.5
When widgets are hidden, their state works exactly the same as normal, but updates are not sent to the toolkits Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/debug.go b/debug.go
index 35b73b7..496fa72 100644
--- a/debug.go
+++ b/debug.go
@@ -38,10 +38,8 @@ func (n *Node) Dump() {
}
Indent(b, "NODE DUMP END")
- a := new(widget.Action)
- a.ActionType = widget.Dump
- a.WidgetId = n.id
- sendAction(a)
+ n.changed = true
+ sendAction(n, widget.Dump)
}
func Indent(b bool, a ...interface{}) {