From d3f978a19d11d5a39d85a1fe7ed52c96b26e25aa Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Wed, 20 Feb 2013 16:16:12 +0100 Subject: [PATCH] AppDisplay: fix undefined variable reference https://bugzilla.gnome.org/show_bug.cgi?id=694282 --- 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 461145b2b..e3c3b9208 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -347,7 +347,7 @@ const AppDisplay = new Lang.Class({ Main.queueDeferredWork(this._frequentAppsWorkId); })); global.settings.connect('changed::app-folder-categories', Lang.bind(this, function() { - Main.queueDeferredWork(this._workId); + Main.queueDeferredWork(this._allAppsWorkId); })); this._views = [];