summaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-05 13:18:44 -0600
committerJeff Carr <[email protected]>2024-01-05 13:18:44 -0600
commitb7cbcf725d493f8a6031b369ff34bdb0686699b0 (patch)
tree8cb44ae400beb894d547875fcc68575e9ae4c9e3 /debug.go
parent0993e7d3d06186eac45ad34fd8618565219032ed (diff)
move to "gui/widget"
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug.go b/debug.go
index 3d330e7..8da55b2 100644
--- a/debug.go
+++ b/debug.go
@@ -9,7 +9,7 @@ import (
"strconv"
"go.wit.com/log"
- "go.wit.com/gui/toolkits"
+ "go.wit.com/gui/widget"
)
// for printing out the binary tree
@@ -38,8 +38,8 @@ func (n *Node) Dump() {
}
Indent(b, "NODE DUMP END")
- a := new(toolkit.Action)
- a.ActionType = toolkit.Dump
+ a := new(widget.Action)
+ a.ActionType = widget.Dump
a.WidgetId = n.id
sendAction(a)
}