summaryrefslogtreecommitdiff
path: root/andlabs/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-11 17:19:47 -0600
committerJeff Carr <[email protected]>2024-01-11 17:19:47 -0600
commitc4582b0b30e3020a92baf299572d8617872d45e5 (patch)
treec678b4f165bf4db0d9975df4b360925e8e9930ca /andlabs/debug.go
parent4bf330767195a00de7fc0538228bcf0305143434 (diff)
type value any
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/debug.go')
-rw-r--r--andlabs/debug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/andlabs/debug.go b/andlabs/debug.go
index 96640a4..7e6bb24 100644
--- a/andlabs/debug.go
+++ b/andlabs/debug.go
@@ -94,7 +94,7 @@ func (n *node) dumpWidget(b bool) {
}
info = n.WidgetType.String()
- d = strconv.Itoa(n.WidgetId) + " " + info + " " + n.Name
+ d = strconv.Itoa(n.WidgetId) + " " + info + " " + n.progname
var tabs string
for i := 0; i < listChildrenDepth; i++ {