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

am: 9386a40edf

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

Change-Id: Ic4790a2a66f9f01064dbcbf6c3f06ca6238f6c3f
This commit is contained in:
Chong Zhang
2016-05-13 23:29:03 +00:00
committed by android-build-merger

View File

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