]> git.0d.be Git - empathy.git/commitdiff
Move the 'Favorite' menu item after 'Information'
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 9 Mar 2010 12:28:09 +0000 (13:28 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 15 Mar 2010 08:28:41 +0000 (09:28 +0100)
libempathy-gtk/empathy-contact-menu.c

index 47f68e8eb664890588d2be838c9575e9f19f7220..23522d40ea3251f9481fc282b53bed0c31b6df8d 100644 (file)
@@ -112,13 +112,6 @@ empathy_contact_menu_new (EmpathyContact             *contact,
        gtk_menu_shell_append (shell, item);
        gtk_widget_show (item);
 
-#if HAVE_FAVOURITE_CONTACTS
-       /* Favorite checkbox */
-       item = empathy_contact_favourite_menu_item_new (contact);
-       gtk_menu_shell_append (shell, item);
-       gtk_widget_show (item);
-#endif
-
        /* Separator */
        if (features & (EMPATHY_CONTACT_FEATURE_EDIT |
                        EMPATHY_CONTACT_FEATURE_INFO)) {
@@ -141,6 +134,13 @@ empathy_contact_menu_new (EmpathyContact             *contact,
                gtk_widget_show (item);
        }
 
+#if HAVE_FAVOURITE_CONTACTS
+       /* Favorite checkbox */
+       item = empathy_contact_favourite_menu_item_new (contact);
+       gtk_menu_shell_append (shell, item);
+       gtk_widget_show (item);
+#endif
+
        return menu;
 }