Skip to content

Commit

Permalink
feat(YouTube - Disable precise seeking gesture): Hide "pull up" label…
Browse files Browse the repository at this point in the history
… that shows up when swiping (ReVanced#696)
  • Loading branch information
zainarbani authored Sep 29, 2024
1 parent ce9e986 commit 0b9afd0
Showing 1 changed file with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
package app.revanced.integrations.youtube.patches;

import android.view.MotionEvent;
import android.view.VelocityTracker;

import app.revanced.integrations.youtube.settings.Settings;

@SuppressWarnings("unused")
public final class DisablePreciseSeekingGesturePatch {
/**
* Disables the gesture that is used to seek precisely.
* @param tracker The velocity tracker that is used to determine the gesture.
* @param event The motion event that is used to determine the gesture.
*/
public static void disableGesture(VelocityTracker tracker, MotionEvent event) {
if (Settings.DISABLE_PRECISE_SEEKING_GESTURE.get()) return;

tracker.addMovement(event);
public static boolean isGestureDisabled() {
return Settings.DISABLE_PRECISE_SEEKING_GESTURE.get();
}
}

0 comments on commit 0b9afd0

Please sign in to comment.