diff options
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,16 +7,16 @@ import ( "go.wit.com/widget" ) -func (w *guiWidget) dumpTree() { +func (w *guiWidget) dumpTree(s string) { // log.Log(ERROR, "dumpTree w", w.node.WidgetId, w.WidgetType, w.String()) if w == nil { log.Log(ERROR, "dumpTree w.TK == nil", w.node.WidgetId, w.WidgetType, w.String()) return } - w.showWidgetPlacement("dumpTree()") + w.showWidgetPlacement("dumpTree() " + s) for _, child := range w.children { - child.dumpTree() + child.dumpTree(s) } } |
