From bf6c29b39c54000857b674de4d514e36c431c914 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 3 Jun 2014 22:26:25 -0400 Subject: [PATCH] Made multiple modifier keys undefined; removed the TODO there. If I need to change the behavior I can do it later. --- area.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/area.go b/area.go index 0ee0d79..4fc7b13 100644 --- a/area.go +++ b/area.go @@ -259,7 +259,7 @@ func (e KeyEvent) EffectiveKey() byte { // Modifiers indicates modifier keys being held during an event. // There is no way to differentiate between left and right modifier keys. -// As such, what KeyEvents get sent if the user does something unusual with both of a certain modifier key at once is (presently; TODO) undefined. +// As such, what KeyEvents get sent if the user does something unusual with both of a certain modifier key at once is undefined. type Modifiers uintptr const ( Ctrl Modifiers = 1 << iota // the keys labelled Ctrl or Control on all platforms