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

Commit 0b85b9d2 authored by Adrian Roos's avatar Adrian Roos Committed by Android Git Automerger
Browse files

am 9c69c319: am 87427ce5: am 456e6674: Merge "Revert "Fix calculation of...

am 9c69c319: am 87427ce5: am 456e6674: Merge "Revert "Fix calculation of overscan insets in WindowState."" into lmp-mr1-dev

* commit '9c69c319':
  Revert "Fix calculation of overscan insets in WindowState."
parents f1d6706f 9c69c319
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -615,8 +615,8 @@ final class WindowState implements WindowManagerPolicy.WindowState {

        mOverscanInsets.set(Math.max(mOverscanFrame.left - mFrame.left, 0),
                Math.max(mOverscanFrame.top - mFrame.top, 0),
                Math.min(mFrame.right - mOverscanFrame.right, 0),
                Math.min(mFrame.bottom - mOverscanFrame.bottom, 0));
                Math.max(mFrame.right - mOverscanFrame.right, 0),
                Math.max(mFrame.bottom - mOverscanFrame.bottom, 0));

        mContentInsets.set(mContentFrame.left - mFrame.left,
                mContentFrame.top - mFrame.top,