diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:55:31 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:55:31 -0500 |
commit | 46d20cdde82d0e1ab42e48baf3d4229b2922d4b7 (patch) | |
tree | c498b6b1b988465a7c41eeb7fe3b350b09f986a2 /src | |
parent | 44c85bbc56f50255ab65ed9e9478f70c03213e8c (diff) | |
download | voidsky-46d20cdde82d0e1ab42e48baf3d4229b2922d4b7.tar.zst |
Allow nav swipes to start from anywhere on the screen
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index cef72cfd4..a5e7ba701 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -146,7 +146,6 @@ export const MobileShell: React.FC = observer(() => { const swipeGesture = useMemo( () => Gesture.Pan() - .hitSlop(SWIPE_GESTURE_HIT_SLOP) .onUpdate(e => { if (store.nav.tab.canGoBack) { swipeGestureInterp.value = Math.max( |