diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-06 20:34:44 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-06 20:36:31 -0400 |
| commit | 898c3c7b66a2b3c1315ec97451e9b9838c97212f (patch) | |
| tree | 2e309ff0c6538462335474bc698b2367346d5e9b | |
| parent | d6f559d0263826ca288fb5c68c5d522a89e2bf7d (diff) | |
Removed TODO from area_darwin.go about extra mouse button handling; turns out it works as expected right out of the gate... for the most part.
| -rw-r--r-- | area_darwin.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/area_darwin.go b/area_darwin.go index a2f2361..bd51f61 100644 --- a/area_darwin.go +++ b/area_darwin.go @@ -183,7 +183,6 @@ func areaMouseEvent(self C.id, e C.id, click bool, up bool) { if which != 3 && (held & 2) != 0 { // button 3 me.Held = append(me.Held, 3) } - // TODO remove this part? held >>= 3 for i := uint(4); held != 0; i++ { if which != i && (held & 1) != 0 { |
