summaryrefslogtreecommitdiff
path: root/eventMouseClick.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-31 12:36:46 -0600
committerJeff Carr <[email protected]>2025-01-31 13:47:45 -0600
commitf76960c90764159d1cad6b5264687accc39ca4bd (patch)
tree2b56abf47b9396acd1d8a7eb6b3a7b89e610f815 /eventMouseClick.go
parent5b39848b6448c8b95764bd42146e4e13b469876e (diff)
almost quiet
Diffstat (limited to 'eventMouseClick.go')
-rw-r--r--eventMouseClick.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/eventMouseClick.go b/eventMouseClick.go
index 657cbf9..01ad344 100644
--- a/eventMouseClick.go
+++ b/eventMouseClick.go
@@ -117,6 +117,10 @@ func click(g *gocui.Gui, v *gocui.View) error {
for _, tk := range findByXY(w, h) {
log.Log(GOCUI, fmt.Sprintf("findByXY() click() %s wId=%d cuiName=%s at (%d,%d)", tk.WidgetType, tk.node.WidgetId, tk.cuiName, w, h))
+ if tk.WidgetType == widget.Stdout {
+ // don't send clicks to the stdout debugging window
+ continue
+ }
tk.doWidgetClick()
return nil
}