Merge "The shelf height was mistakenly provided as width, making it equal to 0." into tm-qpr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
77593150da
@@ -1535,7 +1535,7 @@ public abstract class AbsSwipeUpHandler<T extends StatefulActivity<S>,
|
||||
Rect keepClearArea;
|
||||
if (!ENABLE_PIP_KEEP_CLEAR_ALGORITHM) {
|
||||
// make the height equal to hotseatBarSizePx only
|
||||
keepClearArea = new Rect(0, 0, mDp.hotseatBarSizePx, 0);
|
||||
keepClearArea = new Rect(0, 0, 0, mDp.hotseatBarSizePx);
|
||||
return keepClearArea;
|
||||
}
|
||||
// the keep clear area in global screen coordinates, in pixels
|
||||
|
||||
Reference in New Issue
Block a user