I have an about dialog in my Python application and I want to set a custom icon for the dialog.

I looked at set_logo_icon_name(), but that doesn't accept an absolute path to an image.

What can I do to insert my custom icon?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use set_logo() instead. set_logo_icon_name() is for named (i.e., themed) icons. set_logo() takes a gtk.gdk.Pixbuf which you can create from an absolute image path with gtk.gdk.pixbuf_new_from_file().

link|improve this answer
Thanks! For some reason, I missed that function. – George Edison Apr 25 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.