I work on a project in C using GTK+. This project is for GTK+3.6 minimum.
I would like to set all GTKTextView in monospace font. Before the last update of GTK to GTK3.20, my CSS sheet was working well with :
GtkTextView {
font: Mono
}
Now, it is not working anymore. However, glade has a property :
<property name="monospace">True</property>
but this property exists since GTK 3.16 and debian stable is on GTK3.14. Of course I want it portable.
My question is: how I can do it ? How I can set all my gtkTextView to the monospace font ?