From d7e47e58b5b33f3ead939d3c630ea13568dfe74c Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 15 Oct 2011 07:24:48 +0200 Subject: Fix NEWT/Pointer Invisible: INVISIBLE_MASK was equal w/ CONFINED_MASK (duh) --- src/newt/classes/com/jogamp/newt/event/InputEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/newt/classes/com/jogamp') 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); -- cgit v1.2.3