Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 516dfc6a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix extra haptic on swipe up" into sc-dev

parents a5cd3c32 62e08797
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ public abstract class AbsSwipeUpHandler<T extends StatefulActivity<S>,
        final boolean passed = mCurrentShift.value >= MIN_PROGRESS_FOR_OVERVIEW;
        if (passed != mPassedOverviewThreshold) {
            mPassedOverviewThreshold = passed;
            if (!mDeviceState.isTwoButtonNavMode()) {
            if (mDeviceState.isTwoButtonNavMode()) {
                performHapticFeedback();
            }
        }