summaryrefslogtreecommitdiff
path: root/eventMouseClick.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-09 06:21:21 -0600
committerJeff Carr <[email protected]>2025-02-09 06:21:21 -0600
commit70452bdaac9a558c6266f1f46121222c38e17487 (patch)
treea75f884f8b7b50cbdd180580c9a27a3dee174033 /eventMouseClick.go
parent36745e0492d52bf337f5e6db1ab52912511ec010 (diff)
buttons disabled on window open
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 ce0b6a6..9e4aa1e 100644
--- a/eventMouseClick.go
+++ b/eventMouseClick.go
@@ -15,7 +15,8 @@ func (tk *guiWidget) doButtonClick() {
tk.dumpWidget("click()") // enable this to debug widget clicks
me.myTree.SendFromUser(tk.node)
} else {
- tk.dumpWidget("disabled()") // enable this to debug widget clicks
+ log.Info("button is currently disabled by the application")
+ // tk.dumpWidget("disabled()") // enable this to debug widget clicks
}
}