diff options
author | Ted Gould <ted@gould.cx> | 2011-07-22 12:07:19 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-22 12:07:19 -0500 |
commit | 6fdaf03987ca48e4ca6683c472405f1e44ff60c5 (patch) | |
tree | df9d948d97ce8dedf4868bbd441358c2e9241158 | |
parent | 0eb92a1061c5e00827169f3f419daf01e1a006fc (diff) | |
download | ayatana-indicator-messages-6fdaf03987ca48e4ca6683c472405f1e44ff60c5.tar.gz ayatana-indicator-messages-6fdaf03987ca48e4ca6683c472405f1e44ff60c5.tar.bz2 ayatana-indicator-messages-6fdaf03987ca48e4ca6683c472405f1e44ff60c5.zip |
No need to track the last separator as we now have a menu item below it.
-rw-r--r-- | src/messages-service.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/messages-service.c b/src/messages-service.c index dfa7725..692960d 100644 --- a/src/messages-service.c +++ b/src/messages-service.c @@ -837,7 +837,6 @@ resort_menu (DbusmenuMenuitem * menushell) guint position = 0; GList * serverentry; GList * launcherentry = launcherList; - DbusmenuMenuitem * last_separator = NULL; g_debug("Reordering Menu:"); @@ -874,7 +873,6 @@ resort_menu (DbusmenuMenuitem * menushell) if (!launcher_menu_item_get_eclipsed(li->menuitem)) { /* Only clear the visiblity if we're not eclipsed */ dbusmenu_menuitem_property_set_bool(li->separator, DBUSMENU_MENUITEM_PROP_VISIBLE, TRUE); - last_separator = li->separator; } position++; @@ -930,7 +928,6 @@ resort_menu (DbusmenuMenuitem * menushell) /* Note, this isn't the last if we can't see it */ } else { dbusmenu_menuitem_property_set_bool(si->separator, DBUSMENU_MENUITEM_PROP_VISIBLE, TRUE); - last_separator = si->separator; } dbusmenu_menuitem_child_reorder(DBUSMENU_MENUITEM(menushell), DBUSMENU_MENUITEM(si->separator), position); @@ -962,19 +959,12 @@ resort_menu (DbusmenuMenuitem * menushell) if (!launcher_menu_item_get_eclipsed(li->menuitem)) { /* Only clear the visiblity if we're not eclipsed */ dbusmenu_menuitem_property_set_bool(li->separator, DBUSMENU_MENUITEM_PROP_VISIBLE, TRUE); - last_separator = li->separator; } position++; launcherentry = launcherentry->next; } - if (last_separator != NULL) { - dbusmenu_menuitem_property_set_bool(last_separator, DBUSMENU_MENUITEM_PROP_VISIBLE, FALSE); - } else { - g_warning("No last separator on resort"); - } - return; } |