From 3b6d907577d8024396c83c148b6f73f8bd614d8b Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 4 Sep 2011 19:15:13 -0400 Subject: [PATCH] appDisplay: Do not show NoDisplay directories either https://bugzilla.gnome.org/show_bug.cgi?id=658176 --- js/ui/appDisplay.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 8669d2ba8..da371e5f2 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -208,7 +208,8 @@ ViewByCategories.prototype = { if (!entry.get_app_info().get_nodisplay()) appList.push(app); } else if (nextType == GMenu.TreeItemType.DIRECTORY) { - this._loadCategory(iter.get_directory(), appList); + if (!dir.get_is_nodisplay()) + this._loadCategory(iter.get_directory(), appList); } } }, @@ -262,6 +263,8 @@ ViewByCategories.prototype = { while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) { if (nextType == GMenu.TreeItemType.DIRECTORY) { var dir = iter.get_directory(); + if (dir.get_is_nodisplay()) + continue; this._addCategory(dir.get_name(), i, dir); i++; }