How can I create a GTK combobox with no relief? -



How can I create a GTK combobox with no relief? -

i know can remove button's relief with

button.set_relief(gtk::relief_none); // gtkmm

or

gtk_button_set_relief(button, gtk_relief_none); // gtk

but there's no corresponding method combobox.

what's easiest way accomplish this?

combobox gtk gtkmm

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - cuda, pycuda -- how to write complex numbers -- errors:class "cuComplex" has no member "i" -

How do I check if an insert was successful with MySQLdb in Python? -