diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js index 5dd2be4ae..b5f60de05 100644 --- a/js/ui/overviewControls.js +++ b/js/ui/overviewControls.js @@ -64,7 +64,8 @@ const SlideLayout = new Lang.Class({ // flags only determine what to do if the allocated box is bigger // than the actor's box. let realDirection = getRtlSlideDirection(this._direction, child); - let alignX = (realDirection == SlideDirection.RIGHT) ? (availWidth - natWidth) : 0; + let alignX = (realDirection == SlideDirection.LEFT) ? (availWidth - natWidth) + : (availWidth - natWidth * this._slideX); let actorBox = new Clutter.ActorBox(); actorBox.x1 = box.x1 + alignX + this._translationX;