tags:

views:

66

answers:

0

In C/GTK, is there a way to remove the inner-border for a GtkButton that has an image using gtk_button_set_image?

gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE); sort of did the job but a mouseover showed that it merely hides it.

I would prefer to do this without using an RC style, but if there's no other way, an example on how to use the RC styles would be appreciated.