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

* commit '6ef76c60df9e68950721f92a14c77a3ecd13607c':
  Fix default value of AnimationDrawable's one shot property
This commit is contained in:
Alan Viverette
2014-12-09 18:07:22 +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;
}
}