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

Commit 33be275d authored by Chet Haase's avatar Chet Haase Committed by Android Git Automerger
Browse files

am d65eebf4: Merge "Fix scaled-view droppings artifact" into jb-mr2-dev

* commit 'd65eebf4':
  Fix scaled-view droppings artifact
parents a8549041 d65eebf4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -299,8 +299,8 @@ void DisplayList::updateMatrix() {
                if (mWidth != mPrevWidth || mHeight != mPrevHeight) {
                    mPrevWidth = mWidth;
                    mPrevHeight = mHeight;
                    mPivotX = mPrevWidth / 2;
                    mPivotY = mPrevHeight / 2;
                    mPivotX = mPrevWidth / 2.0f;
                    mPivotY = mPrevHeight / 2.0f;
                }
            }
            if ((mMatrixFlags & ROTATION_3D) == 0) {