gmenu exporter: put submenus in separate groups

Keep sections in the same subscription group as the parent (since they
will be needed immediately) but put submenus in a separate group.
This commit is contained in:
Ryan Lortie 2011-11-29 08:18:38 -05:00
parent a0a94cd6c6
commit 02b001f8f6

View File

@ -269,7 +269,10 @@ g_menu_exporter_menu_create_links (GMenuExporterMenu *menu,
GMenuExporterGroup *group;
GMenuExporterLink *tmp;
if (0) /* [magic] */
/* keep sections in the same group, but create new groups
* otherwise
*/
if (!g_str_equal (name, "section"))
group = g_menu_exporter_create_group (g_menu_exporter_group_get_exporter (menu->group));
else
group = menu->group;