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

Commit f48fd822 authored by Daniel Sandler's avatar Daniel Sandler
Browse files

Fix another NPE.

Bug: 5122306
Change-Id: I6877528325d30bb725f8692c86a8752263b5344e
parent b7ef4cb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1873,7 +1873,7 @@ public class PhoneStatusBar extends StatusBar {
    }

    void updateExpandedSize() {
        if (mExpandedDialog != null && mExpandedParams != null) {
        if (mExpandedDialog != null && mExpandedParams != null && mDisplaySize != null) {
            mExpandedParams.width = mDisplaySize.x;
            mExpandedParams.height = getExpandedHeight(mDisplaySize.y);
            if (!mExpandedVisible) {