From d28bc7afe67582f6c26103261a8c46b8d559b7e0 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Wed, 4 Dec 2019 17:09:10 -0300 Subject: [PATCH] appDisplay: Show newly created folder when creating The icon grid currently sorts icons by their names. When creating new folders, the folder may end up being in a different page, and that's confusing since we don't actually move to where the new folder is. Move the icon grid to the newly created folder. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/883 --- js/ui/appDisplay.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 61dd7ae43..2dcf866e4 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -923,6 +923,8 @@ var AllView = GObject.registerClass({ newFolderSettings.set_strv('apps', apps); newFolderSettings.apply(); + this.selectApp(newFolderId); + return true; } });