Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bda9bac4 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by Android Git Automerger
Browse files

am 3e584428: Merge change 9124 into donut

Merge commit '3e584428'

* commit '3e584428':
  Fix a bug in ImageView: The drawing matrix is not updated when setImageMatrix is called.
parents 584a375d 3e584428
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -463,6 +463,7 @@ public class ImageView extends View {
        if (matrix == null && !mMatrix.isIdentity() ||
                matrix != null && !mMatrix.equals(matrix)) {
            mMatrix.set(matrix);
            configureBounds();
            invalidate();
        }
    }