From 004c5cf287b6d0766886d283c4ac9c60d1bc5b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 2 Aug 2011 00:29:28 +0200 Subject: [PATCH] shell-app-system: Load settings apps When porting to the new gnome-menus API in commit 8f3bdd4f1, the initial loading of settings apps was left out, so settings panels are neither found nor can be launched from the top panel menus. --- src/shell-app-system.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/shell-app-system.c b/src/shell-app-system.c index 80eada415..48b0ddfff 100644 --- a/src/shell-app-system.c +++ b/src/shell-app-system.c @@ -347,6 +347,11 @@ reread_menus (ShellAppSystem *self) g_warning ("Failed to load apps: %s", error->message); return; } + if (!gmenu_tree_load_sync (self->priv->settings_tree, &error)) + { + g_warning ("Failed to load settings: %s", error->message); + return; + } self->priv->loaded = TRUE; }