Fixing two regressions in which side pages were not drawn or oriented correctly.
Change-Id: Ib936d7701c8962fc04e6fed2e3d624291fe8fc46
This commit is contained in:
@@ -1660,7 +1660,7 @@ public class Workspace extends SmoothPagedView
|
||||
rotate.setInterpolator(new DecelerateInterpolator(2.0f));
|
||||
rotate.addUpdateListener(new LauncherAnimatorUpdateListener() {
|
||||
public void onAnimationUpdate(float a, float b) {
|
||||
cl.setRotationY(a * 0f + b * 1f);
|
||||
cl.setRotationY(a * mOldRotationYs[i] + b * mNewRotationYs[i]);
|
||||
}
|
||||
});
|
||||
anim.play(rotate);
|
||||
|
||||
Reference in New Issue
Block a user