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

Commit b4ab288c authored by Wale Ogunwale's avatar Wale Ogunwale
Browse files

Don't use WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY

Temp. solution to get the build going. This is okay as we need to remove
this option anyways since we are now using
WindowContainerTransaction#setLaunchRoot

Bug: 185192439
Test: manual
Change-Id: I5b7fa6c9ddb57b74af4b8e0862723e1f7c4e72bd
parent 4d68ee6b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -169,8 +169,6 @@ public class NotificationRemoteInputManager implements Dumpable {
            return mCallback.handleRemoteViewClick(view, pendingIntent,
                    action == null ? false : action.isAuthenticationRequired(), () -> {
                    Pair<Intent, ActivityOptions> options = response.getLaunchOptions(view);
                    options.second.setLaunchWindowingMode(
                            WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY);
                    mLogger.logStartingIntentWithDefaultHandler(entry, pendingIntent);
                    return RemoteViews.startPendingIntent(view, pendingIntent, options);
            });
+0 −3
Original line number Diff line number Diff line
@@ -4622,9 +4622,6 @@ public class StatusBar extends SystemUI implements DemoMode,
        } else {
            options = ActivityOptions.makeBasic();
        }
        // Anything launched from the notification shade should always go into the secondary
        // split-screen windowing mode.
        options.setLaunchWindowingMode(WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY);
        return options;
    }