diff options
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,11 +49,11 @@ func (tk *guiWidget) dumpWidget(s string) { var s1 string var pId int // tk.verifyRect() - if tk.node.Parent == nil { + if tk.parent == nil { log.Logf(WARN, "showWidgetPlacement() parent == nil wId=%d cuiName=%s", tk.WidgetId(), tk.cuiName) pId = 0 } else { - pId = tk.node.Parent.WidgetId + pId = tk.parent.WidgetId() } s1 = fmt.Sprintf("(wId,pId)=(%4d,%4d) ", tk.WidgetId(), pId) sizeW, sizeH := tk.Size() |
