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

Commit acc4a81a authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE when activity launch options are created before taskbaer init" into main

parents fe7878c1 310e4c80
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -272,6 +272,10 @@ public class LauncherTaskbarUIController extends TaskbarUIController {
     * app launch animation.
     */
    public void setIgnoreInAppFlagForSync(boolean enabled) {
        if (mControllers == null) {
            // This method can be called before init() is called.
            return;
        }
        mControllers.taskbarStashController.updateStateForFlag(FLAG_IGNORE_IN_APP, enabled);
    }