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

Commit 72912116 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am a3b67289: Merge "Fixing View.getBoundsOnScreen()" into jb-dev

* commit 'a3b67289':
  Fixing View.getBoundsOnScreen()
parents 4a5c0163 a3b67289
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4676,13 +4676,13 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
        }
        RectF position = mAttachInfo.mTmpTransformRect;
        position.setEmpty();
        position.set(0, 0, mRight - mLeft, mBottom - mTop);
        if (!hasIdentityMatrix()) {
            getMatrix().mapRect(position);
        }
        position.offset(mLeft, mRight);
        position.offset(mLeft, mTop);
        ViewParent parent = mParent;
        while (parent instanceof View) {