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

Commit 4eac5456 authored by Jeremy Sim's avatar Jeremy Sim Committed by Android (Google) Code Review
Browse files

Merge "Prevent menu items from showing on split tasks" into main

parents 0580379e 6a60c3b1
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -82,9 +82,10 @@ public class TaskOverlayFactory implements ResourceBasedOverride {
        boolean isTablet = activity.getDeviceProfile().isTablet;

        boolean isGridOnlyOverview = isTablet && Flags.enableGridOnlyOverview();
        // Add overview actions to the menu when in in-place rotate landscape mode, or in
        // grid-only overview.
        if ((!canLauncherRotate && isInLandscape) || isGridOnlyOverview) {
        // Add overview actions to the menu when:
        // - single task is showing
        // - in in-place rotate landscape mode, or in grid-only overview.
        if (!hasMultipleTasks && ((!canLauncherRotate && isInLandscape) || isGridOnlyOverview)) {
            // Add screenshot action to task menu.
            List<SystemShortcut> screenshotShortcuts = TaskShortcutFactory.SCREENSHOT
                    .getShortcuts(activity, taskContainer);