Skip to content

Commit 23fb7dc

Browse files
chethaaseAndroid (Google) Code Review
authored andcommitted
Merge "Fix old issue with compatibility-scaled apps and Animations"
2 parents bbbf6b9 + 53f2d55 commit 23fb7dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/java/android/view/ViewGroup.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2661,8 +2661,7 @@ protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
26612661
child.onAnimationStart();
26622662
}
26632663

2664-
more = a.getTransformation(drawingTime, mChildTransformation,
2665-
scalingRequired ? mAttachInfo.mApplicationScale : 1f);
2664+
more = a.getTransformation(drawingTime, mChildTransformation, 1f);
26662665
if (scalingRequired && mAttachInfo.mApplicationScale != 1f) {
26672666
if (mInvalidationTransformation == null) {
26682667
mInvalidationTransformation = new Transformation();

0 commit comments

Comments
 (0)