summaryrefslogtreecommitdiff
path: root/area.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-30 17:52:27 -0400
committerPietro Gagliardi <[email protected]>2014-03-30 17:52:27 -0400
commit41a7e3dab8193d8c19aa43eac344eb274deef5a8 (patch)
tree2817244b71d3f8ed26d2b2336b0828811a54412f /area.go
parent8c18adcfdb1b0ce034c692204c49a1e57e4abe83 (diff)
Implemented Area mouse events on Mac OS X. Also fixed a few other things left behind in the previous commits. Also more TODOs.
Diffstat (limited to 'area.go')
-rw-r--r--area.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/area.go b/area.go
index 1fbaa28..7ee9070 100644
--- a/area.go
+++ b/area.go
@@ -85,8 +85,8 @@ type MouseEvent struct {
Up uint
// If Down is nonzero, Count indicates the number of clicks: 1 for single-click, 2 for double-click.
- // If Count == 2, AT LEAST one event with Count == 1 will have been sent prior.
- // (This is a platform-specific issue: some platforms send one, some send two.)
+ // If Count == 2, AT LEAST zero events with Count == 1 will have been sent prior.
+ // (This is a platform-specific issue: some platforms send none, some send one, and some send two.)
Count uint
// Modifiers is a bit mask indicating the modifier keys being held during the event.