Comment 2 for bug 644392

Revision history for this message
Marius Gedminas (mgedmin) wrote : Re: Tray UI glitch

This seems to be a bug in python-eggtrayicon:

    >>> import egg.trayicon, gtk
    >>> icon = egg.trayicon.TrayIcon("Foo")
    >>> img = gtk.Image()
    >>> img.set_from_file('gtimelog-small.png')
    >>> icon.add(img)
    >>> icon.show_all()

The same transparent png, when used with gtk.StatusIcon(), is properly transparent.

    >>> import gtk
    >>> icon = gtk.status_icon_new_from_file("gtimelog-small.png")