am 60abe259: am 6ef76c60: Merge "Fix default value of AnimationDrawable\'s one shot property" into lmp-mr1-dev

* commit '60abe25978ab1c1e4935dcd58af9cd3a0994c12e':
  Fix default value of AnimationDrawable's one shot property
This commit is contained in:
Alan Viverette
2014-12-09 18:14:13 +00:00
committed by Android Git Automerger

View File

@@ -375,7 +375,7 @@ public class AnimationDrawable extends DrawableContainer implements Runnable, An
mOneShot = orig.mOneShot;
} else {
mDurations = new int[getCapacity()];
mOneShot = true;
mOneShot = false;
}
}