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

Commit 03da19d4 authored by Chong Zhang's avatar Chong Zhang Committed by android-build-merger
Browse files

Merge "Update stack bounds for fullscreen if rotated after updateDisplayInfo" into nyc-dev

am: 918084e9

* commit '918084e9':
  Update stack bounds for fullscreen if rotated after updateDisplayInfo

Change-Id: Id63563c3c8ea8233e3e4d5204d3eb7ca33cf5db5
parents c33568f1 918084e9
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -383,12 +383,6 @@ public class TaskStack implements DimLayer.DimLayerUser,
    }

    private boolean updateBoundsAfterConfigChange() {
        if (mFullscreen) {
            // Bounds will already be set correctly when display info is updated in the case of
            // fullscreen.
            return false;
        }

        final int newRotation = getDisplayInfo().rotation;
        final int newDensity = getDisplayInfo().logicalDensityDpi;

@@ -397,6 +391,13 @@ public class TaskStack implements DimLayer.DimLayerUser,
            return false;
        }

        if (mFullscreen) {
            // Update stack bounds again since rotation changed since updateDisplayInfo().
            setBounds(null);
            // Return false since we don't need the client to resize.
            return false;
        }

        final int oldDockSide = mStackId == DOCKED_STACK_ID ? getDockSide() : DOCKED_INVALID;
        mTmpRect2.set(mBounds);
        mDisplayContent.rotateBounds(mRotation, newRotation, mTmpRect2);