summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/cyanogenmod/trebuchet/Launcher.java1
-rw-r--r--src/com/cyanogenmod/trebuchet/LauncherViewPropertyAnimator.java11
2 files changed, 1 insertions, 11 deletions
diff --git a/src/com/cyanogenmod/trebuchet/Launcher.java b/src/com/cyanogenmod/trebuchet/Launcher.java
index 0b5f29d14..43e25a730 100644
--- a/src/com/cyanogenmod/trebuchet/Launcher.java
+++ b/src/com/cyanogenmod/trebuchet/Launcher.java
@@ -1574,7 +1574,6 @@ public final class Launcher extends Activity
if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
openFolder == null) {
if (mStateAnimation != null) {
- mStateAnimation.end();
mStateAnimation = null;
}
mWorkspace.moveToDefaultScreen(true);
diff --git a/src/com/cyanogenmod/trebuchet/LauncherViewPropertyAnimator.java b/src/com/cyanogenmod/trebuchet/LauncherViewPropertyAnimator.java
index 3a00225a6..ee67b7fc2 100644
--- a/src/com/cyanogenmod/trebuchet/LauncherViewPropertyAnimator.java
+++ b/src/com/cyanogenmod/trebuchet/LauncherViewPropertyAnimator.java
@@ -79,16 +79,7 @@ public class LauncherViewPropertyAnimator extends Animator implements AnimatorLi
@Override
public void end() {
- if (mViewPropertyAnimator != null) {
- mViewPropertyAnimator.cancel();
- mTarget.setTranslationX(mTranslationX);
- mTarget.setTranslationY(mTranslationY);
- mTarget.setScaleX(mScaleX);
- mTarget.setScaleY(mScaleY);
- mTarget.setRotation(mRotation);
- mTarget.setRotationY(mRotationY);
- mTarget.setAlpha(mAlpha);
- }
+ throw new RuntimeException("Not implemented");
}
@Override