aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXerxes Rånby <[email protected]>2013-01-15 15:56:31 +0100
committerXerxes Rånby <[email protected]>2013-01-15 15:56:31 +0100
commit7c1b15bfb00b36e80284701b1ede992b7eb82ef4 (patch)
tree3630f92a09e48610b967097f89f70aa187c0601f /src
parentda14d647581751f3d2f6d651741eaec485e255b5 (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.java3
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;
}