From a09f71bb257b12535986796dbde321ca0fbb17c3 Mon Sep 17 00:00:00 2001 From: alek3y Date: Fri, 24 Feb 2023 22:05:55 +0100 Subject: [PATCH] Fix abrupt multitouch movement --- .../kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt b/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt index da527dd..7c8e23d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt +++ b/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt @@ -64,6 +64,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) { private var mIsBucketFillOn = false private var mWasMultitouch = false private var mIgnoreTouches = false + private var mIgnoreMultitouchChanges = false private var mWasScalingInGesture = false private var mWasMovingCanvasInGesture = false private var mBackgroundColor = 0 @@ -168,7 +169,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) { actionMove(newValueX, newValueY) } - if (mAllowMovingZooming && mWasMultitouch) { + if (mAllowMovingZooming && mWasMultitouch && !mIgnoreMultitouchChanges) { mPosX += x - mLastTouchX mPosY += y - mLastTouchY mWasMovingCanvasInGesture = true @@ -177,6 +178,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) { mLastTouchX = x mLastTouchY = y + mIgnoreMultitouchChanges = false } MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> { mActivePointerId = INVALID_POINTER_ID @@ -187,12 +189,14 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) { MotionEvent.ACTION_POINTER_DOWN -> { if (mAllowMovingZooming) { mWasMultitouch = true + mIgnoreMultitouchChanges = true mTouchSloppedBeforeMultitouch = mLastMotionEvent.isTouchSlop(pointerIndex, mStartX, mStartY) } } MotionEvent.ACTION_POINTER_UP -> { if (mAllowMovingZooming) { mIgnoreTouches = true + mIgnoreMultitouchChanges = true actionUp(!mWasScalingInGesture && !mWasMovingCanvasInGesture) } }