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

Commit 0c9c571a authored by Shawn Lee's avatar Shawn Lee Committed by Automerger Merge Worker
Browse files

Merge "Add a null check to prevent NPE when status bar isn't inflated" into...

Merge "Add a null check to prevent NPE when status bar isn't inflated" into udc-dev am: a59d1b8e am: ab045da6

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23065719



Change-Id: I4307551eb6795c482639cc3ef7fac9401722c8ec
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents d78bd02b ab045da6
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -205,8 +205,11 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
                // TODO move this logic to message queue
                mCentralSurfacesOptionalLazy.get().ifPresent(centralSurfaces -> {
                    if (event.getActionMasked() == ACTION_DOWN) {
                        centralSurfaces.getShadeViewController()
                                        .startExpandLatencyTracking();
                        ShadeViewController shadeViewController =
                                centralSurfaces.getShadeViewController();
                        if (shadeViewController != null) {
                            shadeViewController.startExpandLatencyTracking();
                        }
                    }
                    mHandler.post(() -> {
                        int action = event.getActionMasked();