We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f09d41 commit 59dd356Copy full SHA for 59dd356
library/src/com/slidingmenu/lib/CustomViewAbove.java
@@ -779,9 +779,9 @@ public boolean onTouchEvent(MotionEvent ev) {
779
780
private void determineDrag(MotionEvent ev) {
781
final int activePointerId = mActivePointerId;
782
+ final int pointerIndex = getPointerIndex(ev, activePointerId);
783
if (activePointerId == INVALID_POINTER)
784
return;
- final int pointerIndex = this.getPointerIndex(ev, activePointerId);
785
final float x = MotionEventCompat.getX(ev, pointerIndex);
786
final float dx = x - mLastMotionX;
787
final float xDiff = Math.abs(dx);
0 commit comments