Sat, 05 May 2007 22:29:58 +0000
Telcontar on #pidgin-win32 pointed out that the "New..." and "Saved..."
menu items in the docklet's change status menu were using the available
status icon. The statusbox on the blist doesn't use any icon for these,
so the docklet shouldn't either.
| pidgin/gtkdocklet.c | file | annotate | diff | comparison | revisions |
--- a/pidgin/gtkdocklet.c Sat May 05 21:20:05 2007 +0000 +++ b/pidgin/gtkdocklet.c Sat May 05 22:29:58 2007 +0000 @@ -486,8 +486,8 @@ pidgin_separator(submenu); - new_menu_item_with_status_icon(submenu, _("New..."), PURPLE_STATUS_AVAILABLE, G_CALLBACK(show_custom_status_editor_cb), NULL, 0, 0, NULL); - new_menu_item_with_status_icon(submenu, _("Saved..."), PURPLE_STATUS_AVAILABLE, G_CALLBACK(pidgin_status_window_show), NULL, 0, 0, NULL); + pidgin_new_item_from_stock(submenu, _("New..."), NULL, G_CALLBACK(show_custom_status_editor_cb), NULL, 0, 0, NULL); + pidgin_new_item_from_stock(submenu, _("Saved..."), NULL, G_CALLBACK(pidgin_status_window_show), NULL, 0, 0, NULL); return menuitem; }