diff pidgin/gtkconv.c @ 15990:37d928a6579e

these are 16x16 now
author Nathan Walp <nwalp@pidgin.im>
date Wed, 04 Apr 2007 19:18:24 +0000
parents 50d949d6bda2
children d64602bb59d2
line wrap: on
line diff
--- 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);
 	}