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

Commit f3aec75f authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am 1da56b51: Merge "Make WindowInsets#hasInsets check for stable insets as well" into mnc-dev

* commit '1da56b51':
  Make WindowInsets#hasInsets check for stable insets as well
parents f829ae49 1da56b51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -251,7 +251,7 @@ public final class WindowInsets {
     * @return true if any inset values are nonzero
     */
    public boolean hasInsets() {
        return hasSystemWindowInsets() || hasWindowDecorInsets();
        return hasSystemWindowInsets() || hasWindowDecorInsets() || hasStableInsets();
    }

    /**