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

Commit 1da56b51 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

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

parents 43e77bf6 05e96782
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();
    }

    /**