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

Commit 212310ee authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixed yet another missing check for null anchor..."

parents 77a1f752 6f797170
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2064,7 +2064,7 @@ public class PopupWindow {
        }

        if (update) {
            update(mAnchor.get(), p);
            update(mAnchor != null ? mAnchor.get() : null, p);
        }
    }