Skip to content

Commit

Permalink
feat: Reduce Sensitivity of Swiping for Plugins/Sources (#1220)
Browse files Browse the repository at this point in the history
* Enhancement: Make swiping of plugins/sources less sensitive

* Update swiping offset to be less aggressive
  • Loading branch information
Skeltons authored Aug 17, 2024
1 parent d9d7d3a commit a22d754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/browse/components/BrowseTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export const InstalledTab = memo(
({ item }) => {
return (
<Swipeable
dragOffsetFromLeftEdge={62}
dragOffsetFromRightEdge={62}
dragOffsetFromLeftEdge={30}
dragOffsetFromRightEdge={30}
renderLeftActions={(progress, dragX, ref) => {
return (
<View
Expand Down

0 comments on commit a22d754

Please sign in to comment.