From 74978e84f82b361f9d89f6d2ba911f574cf6dd22 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Mon, 19 Aug 2013 14:02:02 +0200 Subject: [PATCH] appDisplay: Start always at page 0 in AllView Reset the AllView scroll adjustment between overview openings, following design reasons https://bugzilla.gnome.org/show_bug.cgi?id=706081 --- js/ui/appDisplay.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index bd2e15de4..ba1c40cf1 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -325,6 +325,11 @@ const AllView = new Lang.Class({ this._availWidth = 0; this._availHeight = 0; + + Main.overview.connect('hidden', Lang.bind(this, + function() { + this.goToPage(0); + })); }, getCurrentPageY: function() {