Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv2385/src
Modified Files:
conversation.c
Log Message:
Let's try this for a little while and see what we think.
Index: conversation.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/conversation.c,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -d -r1.324 -r1.325
--- conversation.c 2001/12/22 08:08:36 1.324
+++ conversation.c 2002/01/24 21:43:09 1.325
@@ -3112,11 +3112,11 @@
c->icon_timer = gtk_timeout_add(delay * 10, redraw_icon, c);
}
- gdk_pixbuf_render_pixmap_and_mask(scale, &pm, &bm, 0);
+ gdk_pixbuf_render_pixmap_and_mask(scale, &pm, &bm, 100);
gdk_pixbuf_unref(scale);
frame = gtk_frame_new(NULL);
- gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN);
+ gtk_frame_set_shadow_type(GTK_FRAME(frame), bm ? GTK_SHADOW_NONE : GTK_SHADOW_IN);
gtk_box_pack_start(GTK_BOX(c->bbox), frame, FALSE, FALSE, 5);
gtk_widget_show(frame);
|