# HG changeset patch # User Nathan Walp # Date 1175714304 0 # Node ID 37d928a6579e75b24346f8c05d98b51b2ab5421d # Parent 87be53a26478a7f38b7682846a462423903a91df these are 16x16 now diff -r 87be53a26478 -r 37d928a6579e pidgin/gtkconv.c --- a/pidgin/gtkconv.c Wed Apr 04 10:18:36 2007 +0000 +++ b/pidgin/gtkconv.c Wed Apr 04 19:18:24 2007 +0000 @@ -3489,16 +3489,16 @@ if (!pixbuf) return NULL; - scale = gdk_pixbuf_scale_simple(pixbuf, 15, 15, GDK_INTERP_BILINEAR); + scale = gdk_pixbuf_scale_simple(pixbuf, 16, 16, GDK_INTERP_BILINEAR); g_object_unref(pixbuf); if (flags && purple_conv_chat_is_user_ignored(chat, name)) { filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "status", "default", "ignored.png", NULL); pixbuf = gdk_pixbuf_new_from_file(filename, NULL); g_free(filename); - scale2 = gdk_pixbuf_scale_simple(pixbuf, 15, 15, GDK_INTERP_BILINEAR); + scale2 = gdk_pixbuf_scale_simple(pixbuf, 16, 16, GDK_INTERP_BILINEAR); g_object_unref(pixbuf); - gdk_pixbuf_composite(scale2, scale, 0, 0, 15, 15, 0, 0, 1, 1, GDK_INTERP_BILINEAR, 192); + gdk_pixbuf_composite(scale2, scale, 0, 0, 16, 16, 0, 0, 1, 1, GDK_INTERP_BILINEAR, 192); g_object_unref(scale2); }