From 746a8692ac926702d42c72554469a6f48ad1cfbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 31 Aug 2014 01:16:00 +0200 Subject: [PATCH] overviewControls: Don't update translation on slideIn() The comment is right, updating the translation should be deferred to pageEmpty, or else overview controls will just pop up instead of sliding in. So revert that part of commit 6a7fa52879d53. --- js/ui/overviewControls.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js index e37ee703f..9fe1dfd2b 100644 --- a/js/ui/overviewControls.js +++ b/js/ui/overviewControls.js @@ -217,7 +217,6 @@ const SlidingControl = new Lang.Class({ slideIn: function() { this._visible = true; - this._updateTranslation(); // we will update slideX and the translation from pageEmpty },