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

Commit 106fe406 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 udc-dev am: a59d1b8e

parents feb7e1c3 a59d1b8e
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();