Pango Font size under Windows.
Tor Lillqvist <[email protected]>
| Newsgroups | gmane.comp.video.gimp.windows.devel |
|---|---|
| Message-ID | <[email protected]> |
[email protected] writes: > Is it possible to change the font size (e.g. in /etc/pango/pango.aliases) > for the whole application without adding code for each control to change the > size of the font ?? Umm, <top>/etc/gtk-2.0/gtkrc, or an application-specific gtkrc file would be the correct place, I think. Put for instance style "mystyle" { font_name = "sans 12" } class "*" style "mystyle" in it and all widgets will be in Sans 12. Use more specific style specs to specify widget type and/or name -specific styles. Or something. (I am not really good at gtkrc issues. See the documentation.) --tml