fix: limit pinch scale to minimum 0.5 (#1740)

zio/stable
Chee Aun 2023-02-16 03:20:10 +08:00 committed by GitHub
parent 33a53de8d7
commit 769b84867a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ const { isSwiping, lengthX, lengthY, direction } = useSwipe(target, {
useGesture({
onPinch({ offset: [distance, angle] }) {
set({ scale: 1 + distance / 200 })
set({ scale: Math.max(0.5, 1 + distance / 200) })
},
onMove({ movement: [x, y], dragging, pinching }) {
if (dragging && !pinching)