From 961d8484bc63e2c2c428ce9cffb733ddbd1f8492 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 15 Mar 2014 22:39:16 -0400 Subject: [PATCH] Clarified that MouseEvent.Held will not include Down/Up. --- area.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/area.go b/area.go index 5d1ef08..27706cc 100644 --- a/area.go +++ b/area.go @@ -74,8 +74,8 @@ type MouseEvent struct { Modifiers Modifiers // Held is a slice of button IDs that indicate which mouse buttons are being held during the event. + // Held will not include Down and Up. // (TODO "There is no guarantee that Held is sorted."?) - // (TODO will this include or exclude Down and Up?) Held []uint }