summaryrefslogtreecommitdiff
path: root/gocui/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-05 13:35:01 -0600
committerJeff Carr <[email protected]>2024-01-05 13:35:01 -0600
commit8ae3b987acf65f6a1f8ca01060ebb0eeb42aae4d (patch)
treed8dbef56aed0e8d8c4a8b2ae64ee555fd66badff /gocui/debug.go
parent327e14f05154b1cfdb9af27b387cc3227cedca0d (diff)
everything against 'gui/widget'
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gocui/debug.go')
-rw-r--r--gocui/debug.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/gocui/debug.go b/gocui/debug.go
index 3d66f57..9d41d90 100644
--- a/gocui/debug.go
+++ b/gocui/debug.go
@@ -2,7 +2,7 @@ package main
import (
"fmt"
- "go.wit.com/gui/toolkits"
+ "go.wit.com/gui/widget"
)
func (n *node) dumpTree(draw bool) {
@@ -41,7 +41,7 @@ func (n *node) showWidgetPlacement(b bool, s string) {
s1 += fmt.Sprintf(" ")
}
if (n.parent != nil) {
- if (n.parent.WidgetType == toolkit.Grid) {
+ if (n.parent.WidgetType == widget.Grid) {
s1 += fmt.Sprintf("At(%2d,%2d) ", n.AtW, n.AtH)
}
}