Merge "Set final crop on wallpaper instead of intersect clip with stack bounds" into nyc-dev am: 9386a40edf

am: 367d298c4f

* commit '367d298c4f89c5ae33cdffe38604c799e2713ac8':
  Set final crop on wallpaper instead of intersect clip with stack bounds

Change-Id: I1362c2d848389d61fb9a4cab0d1f4cf1b1ddae06
This commit is contained in:
Chong Zhang
2016-05-13 23:31:54 +00:00
committed by android-build-merger

View File

@@ -1333,7 +1333,7 @@ class WindowStateAnimator {
final TaskStack stack = task.mStack;
if (stack != null && !stack.isFullscreen()) {
stack.getDimBounds(mTmpStackBounds);
clipRect.intersect(mTmpStackBounds);
finalClipRect.set(mTmpStackBounds);
}
}
}