# HG changeset patch # User Will Thompson # Date 1193788019 0 # Node ID e694942bbcfa17b98225a3d470d151e9c53585ee # Parent 995fc37576c77ab0b08f62ed8f13fa2118dbf7ff I have no idea why checking for an OFFLINE status type on an account would be necessary before getting the prpl icon. diff -r 995fc37576c7 -r e694942bbcfa pidgin/gtkblist.c --- a/pidgin/gtkblist.c Tue Oct 30 23:41:10 2007 +0000 +++ b/pidgin/gtkblist.c Tue Oct 30 23:46:59 2007 +0000 @@ -4376,15 +4376,12 @@ hbox = gtk_hbox_new(FALSE, 6); /* Create the icon */ - if (purple_account_get_status_type_with_primitive(account, - PURPLE_STATUS_OFFLINE) != NULL) { - pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_SMALL); - if (pixbuf != NULL) { - image = gtk_image_new_from_pixbuf(pixbuf); - g_object_unref(pixbuf); - - gtk_box_pack_start(GTK_BOX(hbox), image, FALSE, FALSE, 0); - } + pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_SMALL); + if (pixbuf != NULL) { + image = gtk_image_new_from_pixbuf(pixbuf); + g_object_unref(pixbuf); + + gtk_box_pack_start(GTK_BOX(hbox), image, FALSE, FALSE, 0); } /* Create the text */