Mercurial > pidgin
changeset 27046:a4574f513be5
Use 16px icons in the XMPP disco browser as 22px seems a bit weird.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sat, 06 Jun 2009 05:45:26 +0000 |
parents | 79c9695f7a8b |
children | f70e86aec7d0 |
files | pidgin/plugins/disco/gtkdisco.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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);