mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-04-06 06:41:08 +02:00
ignore pointer up and down if zooming isnt enabled
This commit is contained in:
parent
61588de69a
commit
056b39e923
@ -182,14 +182,18 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
|
|||||||
mWasMovingCanvasInGesture = false
|
mWasMovingCanvasInGesture = false
|
||||||
}
|
}
|
||||||
MotionEvent.ACTION_POINTER_DOWN -> {
|
MotionEvent.ACTION_POINTER_DOWN -> {
|
||||||
|
if (mAllowMovingZooming) {
|
||||||
mWasMultitouch = true
|
mWasMultitouch = true
|
||||||
mTouchSloppedBeforeMultitouch = mLastMotionEvent.isTouchSlop(pointerIndex, mStartX, mStartY)
|
mTouchSloppedBeforeMultitouch = mLastMotionEvent.isTouchSlop(pointerIndex, mStartX, mStartY)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
MotionEvent.ACTION_POINTER_UP -> {
|
MotionEvent.ACTION_POINTER_UP -> {
|
||||||
|
if (mAllowMovingZooming) {
|
||||||
mIgnoreTouches = true
|
mIgnoreTouches = true
|
||||||
actionUp(!mWasScalingInGesture && !mWasMovingCanvasInGesture)
|
actionUp(!mWasScalingInGesture && !mWasMovingCanvasInGesture)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mLastMotionEvent = MotionEvent.obtain(event)
|
mLastMotionEvent = MotionEvent.obtain(event)
|
||||||
invalidate()
|
invalidate()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user