[Glitch] Prevents swiping when zoomed in

Port 4bae3da85c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo
2025-12-19 17:18:50 +01:00
committed by Claire
parent 2ebf6d60a6
commit 06a49fa0d0

View File

@@ -114,6 +114,11 @@ export const MediaModal: FC<MediaModalProps> = forwardRef<
const bind = useDrag(
({ active, movement: [mx], direction: [xDir], cancel }) => {
// Disable swipe when zoomed in.
if (zoomedIn) {
return;
}
// If dragging and swipe distance is enough, change the index.
if (
active &&