diff options
| author | Jeff Carr <[email protected]> | 2025-01-31 16:15:41 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-31 22:08:29 -0600 |
| commit | 39e851c76c3154390e7835e995b8aad7638d5e73 (patch) | |
| tree | 97bc2898bdebd6778370ed2f5836c52dd1ef7c6e /eventMouse.go | |
| parent | bac14a675bb0cf284809ff31db98f4a3799fe1f6 (diff) | |
very quiet output now with good debugging options
Diffstat (limited to 'eventMouse.go')
| -rw-r--r-- | eventMouse.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eventMouse.go b/eventMouse.go index 8840359..92e09eb 100644 --- a/eventMouse.go +++ b/eventMouse.go @@ -75,9 +75,11 @@ func mouseUp(g *gocui.Gui, v *gocui.View) error { w, h := g.MousePosition() // useful to debug everything that is being clicked on - for _, tk := range findByXY(w, h) { - log.Log(GOCUI, fmt.Sprintf("findByXY() mouseUp() %s wId=%d cuiName=%s at (%d,%d)", tk.WidgetType, tk.node.WidgetId, tk.cuiName, w, h)) - } + /* + for _, tk := range findByXY(w, h) { + log.Log(GOCUI, fmt.Sprintf("findByXY() mouseUp() %s wId=%d cuiName=%s at (%d,%d)", tk.WidgetType, tk.node.WidgetId, tk.cuiName, w, h)) + } + */ dropdownUnclicked(w, h) |
