Merge "Make it harder to dismiss recents when dragging up"
diff --git a/packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.java b/packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.java
index a9f570e..a0a1bac 100644
--- a/packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.java
+++ b/packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.java
@@ -521,7 +521,7 @@
 
     public final void onBusEvent(DraggingInRecentsEndedEvent event) {
         ViewPropertyAnimator animator = animate();
-        if (event.velocity > ViewConfiguration.get(getContext()).getScaledMinimumFlingVelocity()) {
+        if (event.velocity > mFlingAnimationUtils.getMinVelocityPxPerSecond()) {
             animator.translationY(getHeight());
             animator.withEndAction(new Runnable() {
                 @Override