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

Commit 9258cf08 authored by Maurice Lam's avatar Maurice Lam
Browse files

Add missing display ID

In the previous CL I missed the display ID for the other overload of the
method.

Bug: 175329765
Test: Manual
Change-Id: Ifd5a2583cb6211367b1170835ef66a513a812ca1
parent 1ef54a4a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -4398,7 +4398,10 @@ public class StatusBar extends SystemUI implements DemoMode,
     */
    public static Bundle getActivityOptions(int displayId,
            @Nullable RemoteAnimationAdapter animationAdapter) {
        return getDefaultActivityOptions(animationAdapter).toBundle();
        ActivityOptions options = getDefaultActivityOptions(animationAdapter);
        options.setLaunchDisplayId(displayId);
        options.setCallerDisplayId(displayId);
        return options.toBundle();
    }

    /**