Fixing two regressions in which side pages were not drawn or oriented correctly.

Change-Id: Ib936d7701c8962fc04e6fed2e3d624291fe8fc46
This commit is contained in:
Winson Chung
2012-01-30 12:18:04 -08:00
parent 63f541d52c
commit b33e05fa50
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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);