summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.go b/debug.go
index 9d70bb5..75b374f 100644
--- a/debug.go
+++ b/debug.go
@@ -61,7 +61,7 @@ func (n *Node) dumpWidget(b bool) string {
for i := 0; i < listChildrenDepth; i++ {
tabs = tabs + defaultPadding
}
- d = strconv.Itoa(n.id) + " " + info + " " + n.GetProgName() + strings.Join(n.Json(), " ")
+ d = strconv.Itoa(n.id) + " " + info + " " + n.GetProgName()
logindent(b, listChildrenDepth, defaultPadding, d)
if b {
switch n.WidgetType {