From 3c221cea484bdf182329547d0f58da240882efe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 14 Mar 2021 12:07:31 +0100 Subject: [PATCH] overview: Fix showApps() compatibility method The method is unused in gnome-shell itself, but extensions may still want to call it, so make sure it actually works. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3873 Part-of: --- js/ui/overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/overview.js b/js/ui/overview.js index 19f9d6178..75fe6e1a8 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -639,7 +639,7 @@ var Overview = class { } showApps() { - this._show(OverviewControls.ControlsState.APP_GRID); + this.show(OverviewControls.ControlsState.APP_GRID); } runStartupAnimation(callback) {