From d0fe1211f2f5fe405bf5cc9d26207999227fe827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 19 Aug 2014 18:07:38 +0200 Subject: [PATCH] search: Fix visibility of "more" icon Since commit 19749bb37fda75b2b, the icon is always visible - ooops. --- js/ui/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/search.js b/js/ui/search.js index 1d8ce7389..1bb656a0a 100644 --- a/js/ui/search.js +++ b/js/ui/search.js @@ -434,7 +434,7 @@ const ListSearchResults = new Lang.Class({ }, _setMoreIconVisible: function(visible) { - this.providerIcon.moreIcon.visible = true; + this.providerIcon.moreIcon.visible = visible; }, _getMaxDisplayedResults: function() {