diff src/gtkutils.c @ 13109:079f7a452e3a

[gaim-migrate @ 15471] Increase the display size of a few icons by one or two pixels. I think 32 and 16 are much more standard sizes for icons, and this makes the away icon scale better in the gtkstatusbox. It now looks the same as the one displayed in the buddy list committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 03 Feb 2006 03:51:08 +0000
parents 5828d42e8684
children 7a05525e4197
line wrap: on
line diff
--- a/src/gtkutils.c	Fri Feb 03 01:25:31 2006 +0000
+++ b/src/gtkutils.c	Fri Feb 03 03:51:08 2006 +0000
@@ -1579,8 +1579,8 @@
 	pixbuf = gdk_pixbuf_new_from_file(filename, NULL);
 	g_free(filename);
 
-	scaled = gdk_pixbuf_scale_simple(pixbuf, 30*scale_factor,
-				30*scale_factor, GDK_INTERP_BILINEAR);
+	scaled = gdk_pixbuf_scale_simple(pixbuf, 32*scale_factor,
+				32*scale_factor, GDK_INTERP_BILINEAR);
 	g_object_unref(pixbuf);
 
 	return scaled;
@@ -1668,8 +1668,8 @@
 	if (orig == NULL)
 		return NULL;
 
-	pixbuf = gdk_pixbuf_scale_simple(orig, 30*scale_factor,
-					30*scale_factor, GDK_INTERP_BILINEAR);
+	pixbuf = gdk_pixbuf_scale_simple(orig, 32*scale_factor,
+					32*scale_factor, GDK_INTERP_BILINEAR);
 	g_object_unref(G_OBJECT(orig));
 
 	return overlay_status_onto_icon(pixbuf, primitive);