summaryrefslogtreecommitdiff
path: root/eventMouseClick.go
diff options
context:
space:
mode:
Diffstat (limited to 'eventMouseClick.go')
-rw-r--r--eventMouseClick.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/eventMouseClick.go b/eventMouseClick.go
index 0d46216..91b7465 100644
--- a/eventMouseClick.go
+++ b/eventMouseClick.go
@@ -27,7 +27,7 @@ func doMouseClick(w int, h int) {
// can't drag or do anything when dropdown or textbox are visible
for _, tk := range findByXY(w, h) {
if tk.WidgetId() == me.dropdown.wId {
- log.Info("got dropdwon click", w, h, tk.cuiName)
+ log.Info("got dropdown click", w, h, tk.cuiName)
tk.dropdownClicked(w, h)
return
}
@@ -107,6 +107,7 @@ func doMouseClick(w int, h int) {
tk.showDropdown()
return
case widget.Textbox:
+ log.Log(WARN, "TODO: textbox click")
tk.prepTextbox()
return
case widget.Label: