summaryrefslogtreecommitdiff
path: root/dropdown.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-01 13:58:53 -0600
committerJeff Carr <[email protected]>2025-02-01 13:58:53 -0600
commit417b3e5225cfdf00d116082832c44ea1aab93664 (patch)
tree4d0e85aea4697c690b4022d6045f99ace73c6002 /dropdown.go
parente4f0524bdf5331d91c95c9cb89eb4f40138a0ab1 (diff)
use dumpWidget() where possible
Diffstat (limited to 'dropdown.go')
-rw-r--r--dropdown.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dropdown.go b/dropdown.go
index 8e34ec4..3eefea3 100644
--- a/dropdown.go
+++ b/dropdown.go
@@ -173,7 +173,7 @@ func dropdownUnclicked(w, h int) {
// examine everything under X & Y on the screen)
for _, tk := range findByXY(w, h) {
- // log.Log(GOCUI, fmt.Sprintf("findByXY() (dropdown) %-8s wId=%4d at (%3d,%3d) %s", tk.WidgetType, tk.node.WidgetId, w, h, tk.node.String()))
+ // tk.dumpWidget("dropdownUnclicked()")
if tk.WidgetType == widget.Dropdown {
d = tk
}