[Glitch] Prevents swiping when zoomed in
Port 4bae3da85c8ee935539aacc92429bdb55aaf145e to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
2ebf6d60a6
commit
06a49fa0d0
@ -114,6 +114,11 @@ export const MediaModal: FC<MediaModalProps> = forwardRef<
|
|||||||
|
|
||||||
const bind = useDrag(
|
const bind = useDrag(
|
||||||
({ active, movement: [mx], direction: [xDir], cancel }) => {
|
({ 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 dragging and swipe distance is enough, change the index.
|
||||||
if (
|
if (
|
||||||
active &&
|
active &&
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user