Merge "Fix exception when trying to update config of detached stack" into nyc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
a1984286d3
@@ -381,6 +381,11 @@ public class TaskStack implements DimLayer.DimLayerUser,
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean updateBoundsAfterConfigChange() {
|
private boolean updateBoundsAfterConfigChange() {
|
||||||
|
if (mDisplayContent == null) {
|
||||||
|
// If the stack is already detached we're not updating anything,
|
||||||
|
// as it's going away soon anyway.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
final int newRotation = getDisplayInfo().rotation;
|
final int newRotation = getDisplayInfo().rotation;
|
||||||
final int newDensity = getDisplayInfo().logicalDensityDpi;
|
final int newDensity = getDisplayInfo().logicalDensityDpi;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user