diff options
author | Sven Gothel <[email protected]> | 2011-10-15 07:24:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-10-15 07:24:48 +0200 |
commit | d7e47e58b5b33f3ead939d3c630ea13568dfe74c (patch) | |
tree | 21adee975c1edecf2c850c5d4cdac32480aba382 | |
parent | 76145eca17724f86e6a16e20b4b6e7ca5d39da34 (diff) |
Fix NEWT/Pointer Invisible: INVISIBLE_MASK was equal w/ CONFINED_MASK (duh)
-rw-r--r-- | src/newt/classes/com/jogamp/newt/event/InputEvent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/com/jogamp/newt/event/InputEvent.java b/src/newt/classes/com/jogamp/newt/event/InputEvent.java index dcbd1eb94..51ceccf31 100644 --- a/src/newt/classes/com/jogamp/newt/event/InputEvent.java +++ b/src/newt/classes/com/jogamp/newt/event/InputEvent.java @@ -46,7 +46,7 @@ public abstract class InputEvent extends NEWTEvent public static final int BUTTON2_MASK = 1 << 7; public static final int BUTTON3_MASK = 1 << 8; public static final int CONFINED_MASK = 1 << 16; - public static final int INVISIBLE_MASK = 1 << 16; + public static final int INVISIBLE_MASK = 1 << 17; protected InputEvent(int eventType, Object source, long when, int modifiers) { super(eventType, source, when); |