I want to remove the border of the gtk.button, but i Don't know how to do it.
I tried with :
button = gtk.Button()
button.set_style("inner-border",0)
but i have an error : the property doesn't exist. I tried too to create a new gtk.Style and use it for the button, but same error.
Anyone has an idea ?
Thanks
Set the button's
relief
property:Full test program:
If this doesn't work for you, then your GTK+ theme doesn't support
RELIEF_NONE
.Short version: