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

Commit 6f797170 authored by Felipe Leme's avatar Felipe Leme
Browse files

Fixed yet another missing check for null anchor...

Test: CtsAutoFillServiceTestCases pass
Bug: 36643768

Change-Id: I6f97f3aec88c59a94c593958aca8b4a992d4806e
parent dd23777d
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);
        }
    }