Merge "Fixed issue with wrong stack fullscreen state on configuration change" into nyc-dev am: b59beff

am: 31342b4

* commit '31342b48ef7fc42904a423fd9727086f9c1a3cf0':
  Fixed issue with wrong stack fullscreen state on configuration change

Change-Id: I3b783ee4187e9676e74a6f256dc8fa83e2468eb0
This commit is contained in:
TreeHugger Robot
2016-04-25 23:04:06 +00:00
committed by android-build-merger

View File

@@ -383,6 +383,12 @@ public class TaskStack implements DimLayer.DimLayerUser,
}
boolean updateBoundsAfterConfigChange(boolean scheduleResize) {
if (mFullscreen) {
// Bounds will already be set correctly when display info is updated in the case of
// fullscreen.
return false;
}
if (mLastConfigChangedRotation != mLastUpdateDisplayInfoRotation) {
// We wait for the rotation values after configuration change and display info. update
// to be equal before updating the bounds due to rotation change otherwise things might
@@ -399,6 +405,7 @@ public class TaskStack implements DimLayer.DimLayerUser,
}
final int oldDockSide = mStackId == DOCKED_STACK_ID ? getDockSide() : DOCKED_INVALID;
mTmpRect2.set(mBounds);
mDisplayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
if (mStackId == DOCKED_STACK_ID) {
repositionDockedStackAfterRotation(mTmpRect2);