Fix regression which broke Workspace flings in RTL

issue 63815505

Change-Id: Iac2f66235c0d36c0df58da20f3e0aace14c190b7
This commit is contained in:
Adam Cohen
2017-07-18 16:14:12 -07:00
parent b11be0bff5
commit 5360b6ee4f

View File

@@ -1401,7 +1401,7 @@ public class Workspace extends PagedView
@Override
protected boolean shouldFlingForVelocity(int velocityX) {
// When the overlay is moving, the fling or settle transition is controlled by the overlay.
return Float.compare(mOverlayTranslation, 0) == 0 &&
return Float.compare(Math.abs(mOverlayTranslation), 0) == 0 &&
super.shouldFlingForVelocity(velocityX);
}