summaryrefslogtreecommitdiff
path: root/button.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-10 11:59:40 -0400
committerPietro Gagliardi <[email protected]>2014-04-10 11:59:40 -0400
commit9e185d815eec14ea9f50ffbbbf171cf78e597808 (patch)
treeb91a9d5916928516d4e11bf4ea4c32846a93b9d3 /button.go
parent0a54daa7b1a3b433cce594bdac16659a06445c74 (diff)
Documented that event channels can be assigned to each other to collapse events.
Diffstat (limited to 'button.go')
-rw-r--r--button.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/button.go b/button.go
index 908936e..f3c5763 100644
--- a/button.go
+++ b/button.go
@@ -10,6 +10,7 @@ import (
type Button struct {
// Clicked gets a message when the button is clicked.
// You cannot change it once the Window containing the Button has been opened.
+ // If you do not respond to this signal, nothing will happen.
Clicked chan struct{}
lock sync.Mutex