Follow-up Comment #4, bug #14865 (project mldonkey):

A friend and I debugged a similar problem in another GTK application. The
cause there was that the application used an RGB picture and not an RGBA one,
and adding an alpha channel solved it:
    if (!gdk_pixbuf_get_has_alpha(bs->image)) {
        pixbuf=gdk_pixbuf_add_alpha(bs->image, FALSE, 0, 0, 0);
        g_object_unref(bs->image);
        bs->image = pixbuf;
    }
It's not clear to us yet why it is necessary.

Perhaps a similar patch would help in mldonkey?

    _______________________________________________________

Reply to this item at:

  <http://savannah.nongnu.org/bugs/?func=detailitem&item_id=14865>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/



_______________________________________________
Mldonkey-bugs mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/mldonkey-bugs

Reply via email to