From 8a50a8e64c66c57e788c05196e420fe59913e114 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Mon, 25 May 2020 22:01:25 -0300 Subject: [PATCH] appDisplay: Allow incomplete pages Allow incomplete pages in the main grid, but not on folders. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1284 --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 16e47970c..d443886e5 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -193,7 +193,7 @@ var BaseAppView = GObject.registerClass({ } _createGrid() { - return new IconGrid.IconGrid(); + return new IconGrid.IconGrid({ allow_incomplete_pages: true }); } _onScroll(actor, event) {