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

am: 10b0aa6

* commit '10b0aa69d13b15be681caa14690934014b2d174c':
  Fix invalid stack position when docked on right

Change-Id: Ic6697b890118feffb7c9d8df427fd338a5772f23
This commit is contained in:
Andrii Kulian
2016-04-09 00:41:45 +00:00
committed by android-build-merger

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;