Correction of a bug that prevented RT to use the same font everywhere

This commit is contained in:
Hombre
2010-10-06 22:07:01 +02:00
parent 7be9746404
commit 5dc2955f18
8 changed files with 2 additions and 15 deletions

View File

@@ -106,7 +106,7 @@ int main(int argc, char **argv)
rcfiles.push_back (argv0+"/themes/"+options.theme);
// Set the font face and size
Gtk::RC::parse_string (Glib::ustring::compose(
"style \"clearlooks-default\" { font_name = \"%1\" } style \"clearlooks-menu-item\" { font_name = \"%1\" }", options.font));
"style \"clearlooks-default\" { font_name = \"%1\" }", options.font));
Gtk::RC::set_default_files (rcfiles);
Gtk::Main m(&argc, &argv);