# HG changeset patch # User Tim Ringenbach # Date 1085623367 0 # Node ID f06013ff80d9d01a9573c6a0a67baf76bd6c5407 # Parent 13e809489bebc7516811bf8664f9bcd71819a93b [gaim-migrate @ 9854] This is a patch I made grim write, that fixes transparency issues with im images. Unfortunately it only works on gtk 2.4 and greater. Which is why I had to make grim write it. committer: Tailor Script diff -r 13e809489beb -r f06013ff80d9 src/gtkimhtml.c --- a/src/gtkimhtml.c Wed May 26 23:24:44 2004 +0000 +++ b/src/gtkimhtml.c Thu May 27 02:02:47 2004 +0000 @@ -2747,6 +2747,9 @@ GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); +#if GTK_CHECK_VERSION(2,4,0) + gtk_event_box_set_visible_window(GTK_EVENT_BOX(box), FALSE); +#endif gtk_widget_show(GTK_WIDGET(image->image)); gtk_widget_show(box);