# HG changeset patch # User Elliott Sales de Andrade # Date 1244267126 0 # Node ID a4574f513be5a3ee8697dfe116e99676c930b331 # Parent 79c9695f7a8b8df8c0c704d85471c9ada5aa70b3 Use 16px icons in the XMPP disco browser as 22px seems a bit weird. diff -r 79c9695f7a8b -r a4574f513be5 pidgin/plugins/disco/gtkdisco.c --- a/pidgin/plugins/disco/gtkdisco.c Sat Jun 06 04:00:22 2009 +0000 +++ b/pidgin/plugins/disco/gtkdisco.c Sat Jun 06 05:45:26 2009 +0000 @@ -565,14 +565,14 @@ if (service->type == XMPP_DISCO_SERVICE_TYPE_GATEWAY && service->gateway_type) { char *tmp = g_strconcat(service->gateway_type, ".png", NULL); - filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "protocols", "22", tmp, NULL); + filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "protocols", "16", tmp, NULL); g_free(tmp); #if 0 } else if (service->type == XMPP_DISCO_SERVICE_TYPE_USER) { - filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "status", "22", "person.png", NULL); + filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "status", "16", "person.png", NULL); #endif } else if (service->type == XMPP_DISCO_SERVICE_TYPE_CHAT) - filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "status", "22", "chat.png", NULL); + filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "status", "16", "chat.png", NULL); if (filename) { pixbuf = gdk_pixbuf_new_from_file(filename, NULL);