From 12845f0eefa02b9a3f54c4263ac8d1b1157634b8 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Sun, 17 Feb 2013 15:44:33 -0500 Subject: [PATCH] overviewControls: reset any translation when sliding in for drag Fixes the dash not sliding when dragging an app from the search results. --- js/ui/overviewControls.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js index 1a0dc3d0b..4800f4f6a 100644 --- a/js/ui/overviewControls.js +++ b/js/ui/overviewControls.js @@ -163,6 +163,7 @@ const SlidingControl = new Lang.Class({ _onDragBegin: function() { this.inDrag = true; + this.actor.translation_x = 0; this.updateSlide(); },