summaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-25 07:27:37 -0500
committerJeff Carr <[email protected]>2025-03-25 13:17:00 -0500
commit1552eedc185e85b46498898e68867afaef308301 (patch)
tree8fc5cdfbc77cde184842197b2cde5cce8d85d34b /debug.go
parent4523eda0fa2372d97fb5db800b79b53c218ef627 (diff)
save the output window state
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/debug.go b/debug.go
index 84630f5..490b113 100644
--- a/debug.go
+++ b/debug.go
@@ -86,6 +86,9 @@ func (tk *guiWidget) dumpWidget(s string) {
} else {
end = fmt.Sprintf("%-8s %-8s %s", tk.WidgetType(), tk.cuiName, tk.String())
}
+ if tk.findParentTable() != nil {
+ end += " (table)"
+ }
log.Log(GOCUI, s1, s, end)
}