diff options
author | Xerxes Rånby <[email protected]> | 2013-01-15 15:56:31 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2013-01-15 15:56:31 +0100 |
commit | 7c1b15bfb00b36e80284701b1ede992b7eb82ef4 (patch) | |
tree | 3630f92a09e48610b967097f89f70aa187c0601f /src | |
parent | da14d647581751f3d2f6d651741eaec485e255b5 (diff) |
LinuxMouseTracker: Fix inverted Y-axis & missing button release.
Signed-off-by: Xerxes Rånby <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/linux/LinuxMouseTracker.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/newt/classes/jogamp/newt/driver/linux/LinuxMouseTracker.java b/src/newt/classes/jogamp/newt/driver/linux/LinuxMouseTracker.java index 885649d17..b8a326a6c 100644 --- a/src/newt/classes/jogamp/newt/driver/linux/LinuxMouseTracker.java +++ b/src/newt/classes/jogamp/newt/driver/linux/LinuxMouseTracker.java @@ -152,7 +152,7 @@ public class LinuxMouseTracker implements WindowListener { yd=b[2]; x+=xd; - y+=yd; + y-=yd; if(x<0) { x=0; @@ -161,6 +161,7 @@ public class LinuxMouseTracker implements WindowListener { y=0; } + buttonDown = 0; if(lb) { buttonDown = MouseEvent.BUTTON1; } |