1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 06:18:07 +09:00

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

This commit is contained in:
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

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)