summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-17 22:20:19 -0600
committerJeff Carr <[email protected]>2024-01-17 22:20:19 -0600
commitbc21d87331989437a611cabbe8ff94fd04251053 (patch)
tree44d3ecd507efa111ebb10058b1342d816b3f48eb
parenta6a3e1193fa7c77165f3ed2eb0031f319b4abdd0 (diff)
put json concept in toolkits/treev0.12.12
Signed-off-by: Jeff Carr <[email protected]>
-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 {