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

Commit a75c0709 authored by Wale Ogunwale's avatar Wale Ogunwale Committed by android-build-merger
Browse files

Merge \"Make sure task exists in WM before trying to set the resizing state\" into nyc-dev

am: 39647560

Change-Id: I077e2d9432cdcb4f4e796df158c9fdb701e2a5f6
parents 24edc393 39647560
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2028,7 +2028,7 @@ public final class ActivityStackSupervisor implements DisplayListener {
        continueUpdateBounds(HOME_STACK_ID);
        for (int i = mResizingTasksDuringAnimation.size() - 1; i >= 0; i--) {
            final int taskId = mResizingTasksDuringAnimation.valueAt(i);
            if (anyTaskForIdLocked(taskId) != null) {
            if (anyTaskForIdLocked(taskId, !RESTORE_FROM_RECENTS, INVALID_STACK_ID) != null) {
                mWindowManager.setTaskDockedResizing(taskId, false);
            }
        }
+2 −2
Original line number Diff line number Diff line
@@ -5230,8 +5230,8 @@ public class WindowManagerService extends IWindowManager.Stub
        synchronized (mWindowMap) {
            Task task = mTaskIdToTask.get(taskId);
            if (task == null) {
                throw new IllegalArgumentException("setTaskDockedResizing: taskId " + taskId
                        + " not found.");
                Slog.w(TAG, "setTaskDockedResizing: taskId " + taskId + " not found.");
                return;
            }
            task.setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
        }