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

Commit 5e933c1e authored by Agnieszka Madurska's avatar Agnieszka Madurska Committed by Android (Google) Code Review
Browse files

Merge "Avoid an NPE while checking view location on screen." into cw-f-dev

parents 9b743f19 a5645464
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23859,7 +23859,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
     * on the screen.
     */
    private boolean shouldDrawRoundScrollbar() {
        if (!mResources.getConfiguration().isScreenRound()) {
        if (!mResources.getConfiguration().isScreenRound() || mAttachInfo == null) {
            return false;
        }