am 68837c4e: Merge "Avoid skipping animated status bar icon frames." into klp-dev

* commit '68837c4eca7705cd32e3de2e7cdcd24c72ecaea7':
  Avoid skipping animated status bar icon frames.
This commit is contained in:
John Spurlock
2013-11-14 17:16:38 -08:00
committed by Android Git Automerger

View File

@@ -38,7 +38,7 @@ public class AnimatedImageView extends ImageView {
}
private void updateAnim() {
Drawable drawable = getDrawable();
Drawable drawable = mAttached ? getDrawable() : null;
if (mAttached && mAnim != null) {
mAnim.stop();
}