summaryrefslogtreecommitdiff
path: root/junk1.go
diff options
context:
space:
mode:
Diffstat (limited to 'junk1.go')
-rw-r--r--junk1.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/junk1.go b/junk1.go
index 1ed2d7e..7a6c4a7 100644
--- a/junk1.go
+++ b/junk1.go
@@ -105,7 +105,7 @@ func addDebugKeys(g *gocui.Gui) {
func(g *gocui.Gui, v *gocui.View) error {
w, h := g.MousePosition()
for _, tk := range findByXY(w, h) {
- log.Log(GOCUI, fmt.Sprintf("findByXY() msgDown() %s wId=%d cuiName=%s at (%d,%d)", tk.WidgetType, tk.node.WidgetId, tk.cuiName, w, h))
+ log.Log(GOCUI, fmt.Sprintf("findByXY() msgDown() %s wId=%d at (%d,%d) %s", tk.WidgetType, tk.node.WidgetId, w, h, tk.node.String()))
}
return nil
})
@@ -152,7 +152,7 @@ func addDebugKeys(g *gocui.Gui) {
g.SetKeybinding("", 'M', gocui.ModNone,
func(g *gocui.Gui, v *gocui.View) error {
w := me.treeRoot.TK.(*guiWidget)
- w.dumpTree("M")
+ w.dumpTree("MM")
return nil
})