Merge "Fix invalid stack position when docked on right" into nyc-dev

This commit is contained in:
Andrii Kulian
2016-04-08 20:23:35 +00:00
committed by Android (Google) Code Review

View File

@@ -720,9 +720,9 @@ public class TaskStack implements DimLayer.DimLayerUser,
}
} else {
if (splitHorizontally) {
outBounds.left = position - dockDividerWidth;
outBounds.left = position + dockDividerWidth;
} else {
outBounds.top = position - dockDividerWidth;
outBounds.top = position + dockDividerWidth;
}
}
return;