Revert "Make the stack protrude the same amount on the right as left"

This reverts commit 3e8415f104.

This wasn't actually correct.
This commit is contained in:
Tor Hedin Brønner
2017-10-19 11:57:33 +02:00
parent eb9ac72d4c
commit b68e79e372

View File

@@ -132,7 +132,7 @@ Minimap = new Lang.Class({
let maxProtrusion = 500;
let leftStackGap = maxProtrusion/(around);
let rightStackGap = maxProtrusion/(clones.length - around);
let rightStackGap = maxProtrusion/(clones.length - 1 - around);
for (let i=0; i < around; i++) {
let clone = clones[i];
clone.set_pivot_point(0, 0.5);