summaryrefslogtreecommitdiff
path: root/eventMouseClick.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-01 15:57:29 -0600
committerJeff Carr <[email protected]>2025-02-01 15:57:29 -0600
commit2e0465e44a7db03f804b6c66699f8eed3d9fbfad (patch)
tree109410f93d25c9f6ce15072adda0a1a9dfde49ff /eventMouseClick.go
parent49f8e1c043ed5dfe39d0c56a9fd52b20fb069bb2 (diff)
silence all dropdown menu output
Diffstat (limited to 'eventMouseClick.go')
-rw-r--r--eventMouseClick.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/eventMouseClick.go b/eventMouseClick.go
index c3c960e..d473a46 100644
--- a/eventMouseClick.go
+++ b/eventMouseClick.go
@@ -79,16 +79,17 @@ func (tk *guiWidget) doWidgetClick(w int, h int) {
tk.showDropdown()
me.dropdownW = tk
case widget.Dropdown:
- log.Log(GOCUI, "do the dropdown here")
+ // log.Log(GOCUI, "do the dropdown here")
tk.showDropdown()
me.dropdownW = tk
case widget.Stdout:
log.Log(GOCUI, "stdout widget found!")
tk.dumpWidget("stdout click")
case widget.Flag:
- log.Log(GOCUI, "flag widget found!")
- got := tk.dropdownClicked(w, h)
- log.Log(GOCUI, "flag click got", got)
+ // log.Log(GOCUI, "flag widget found!")
+ tk.dropdownClicked(w, h)
+ // got_ := dropdownClicked(w, h)
+ // log.Log(GOCUI, "flag click got", got)
default:
tk.dumpWidget("blank click()")
}