summaryrefslogtreecommitdiff
path: root/eventBindings.go
diff options
context:
space:
mode:
Diffstat (limited to 'eventBindings.go')
-rw-r--r--eventBindings.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/eventBindings.go b/eventBindings.go
index 330c255..1f86e1e 100644
--- a/eventBindings.go
+++ b/eventBindings.go
@@ -1,5 +1,6 @@
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
-// Use of this source code is (now) governed by the GPL 3.0
+// Use of this source code is governed by the GPL 3.0
+
package main
@@ -68,10 +69,11 @@ func theNotsure(g *gocui.Gui, v *gocui.View) error {
w, h := g.MousePosition()
for _, tk := range findByXY(w, h) {
if tk.WidgetType == widget.Stdout {
+ log.Log(GOCUI, fmt.Sprintf("findByXY() '2' key %-8s wId=%4d at (%3d,%3d) %s", tk.WidgetType, tk.node.WidgetId, w, h, tk.node.String()))
log.Info("skipping stdout")
continue
}
- log.Log(GOCUI, fmt.Sprintf("findByXY() 'f' key %-8s wId=%4d at (%3d,%3d) %s", tk.WidgetType, tk.node.WidgetId, w, h, tk.node.String()))
+ log.Log(GOCUI, fmt.Sprintf("findByXY() HIDDING %-8s wId=%4d at (%3d,%3d) %s", tk.WidgetType, tk.node.WidgetId, w, h, tk.node.String()))
tk.Hide()
}
return nil