From a78cd82dcdea71fbeb15a6b938780a11077a167c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 1 Feb 2025 11:42:31 -0600 Subject: GPL 3.0 --- eventBindings.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'eventBindings.go') 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 -- cgit v1.2.3