diff options
author | Rami Santina <[email protected]> | 2011-08-05 12:35:10 +0300 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-08-05 12:35:10 +0300 |
commit | 94d9bcebaa382c87cb4baa6be4b85c8789a140dd (patch) | |
tree | bbc32ccbeb3ce7c726c3655ac9efaf20e0e1c708 /src/newt/classes/com | |
parent | f0e35817ba6a9f9fdc38811de6b29ed1b2eacbbc (diff) |
Fix: event mapping mismatch
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/event/MouseEvent.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java index be763b48d..62a8941d7 100644 --- a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java +++ b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java @@ -83,10 +83,6 @@ public class MouseEvent extends InputEvent return x.length; } - public int getPointerId() { - return pointerids[0]; - } - /** * @return the pointer id for the data at index. * return -1 if index not available. @@ -100,6 +96,7 @@ public class MouseEvent extends InputEvent public int getButton() { return button; } + public int getClickCount() { return clickCount; } |