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

Commit 38af2e3f authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Always invoke Legacy Global Actions from the UI thread." into rvc-dev...

Merge "Always invoke Legacy Global Actions from the UI thread." into rvc-dev am: ea494a7c am: cfba9109

Change-Id: I368f254600566459f635ca44da03f55bff6bd4ef
parents f916e980 cfba9109
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ import com.android.internal.statusbar.StatusBarIcon;
import com.android.internal.util.DumpUtils;
import com.android.internal.view.AppearanceRegion;
import com.android.server.LocalServices;
import com.android.server.UiThread;
import com.android.server.notification.NotificationDelegate;
import com.android.server.policy.GlobalActionsProvider;
import com.android.server.power.ShutdownThread;
@@ -1118,7 +1119,7 @@ public class StatusBarManagerService extends IStatusBarService.Stub implements D
    }

    private void notifyBarAttachChanged() {
        mHandler.post(() -> {
        UiThread.getHandler().post(() -> {
            if (mGlobalActionListener == null) return;
            mGlobalActionListener.onGlobalActionsAvailableChanged(mBar != null);
        });