remove border of a gtk.button
- by spanctus
Hi,
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