summaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/debug.go b/debug.go
index 490b113..0e3ae94 100644
--- a/debug.go
+++ b/debug.go
@@ -86,7 +86,8 @@ func (tk *guiWidget) dumpWidget(s string) {
} else {
end = fmt.Sprintf("%-8s %-8s %s", tk.WidgetType(), tk.cuiName, tk.String())
}
- if tk.findParentTable() != nil {
+ if tk.node.InTable() {
+ // log.Log(GOCUI, "findParentTAble()", tk.labelN, tk.cuiName, tk.node.WidgetId)
end += " (table)"
}
log.Log(GOCUI, s1, s, end)