diff --git a/patches/src/main/kotlin/app/revanced/patches/instagram/reels/DisableReelsScrollingPatch.kt b/patches/src/main/kotlin/app/revanced/patches/instagram/reels/DisableReelsScrollingPatch.kt index acb8235fb..059a30065 100644 --- a/patches/src/main/kotlin/app/revanced/patches/instagram/reels/DisableReelsScrollingPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/instagram/reels/DisableReelsScrollingPatch.kt @@ -9,7 +9,7 @@ val disableReelsScrollingPatch = bytecodePatch( name = "Disable Reels scrolling", description = "Disables the endless scrolling behavior in Instagram Reels, preventing swiping to the next Reel. " + "Note: On a clean install, the 'Tip' animation may appear but will stop on its own after a few seconds.", - use = true + use = false ) { compatibleWith("com.instagram.android") @@ -31,4 +31,4 @@ val disableReelsScrollingPatch = bytecodePatch( // Return false in onInterceptTouchEvent to disable pull-to-refresh. clipsSwipeRefreshLayoutOnInterceptTouchEventFingerprint.method.returnEarly(false) } -} \ No newline at end of file +}