diff options
| author | Martin Owens <doctormo@gmail.com> | 2014-01-10 03:26:45 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2014-01-10 03:26:45 +0000 |
| commit | 84a5554a6a1dd4791a895f9c500e3e254b692f9d (patch) | |
| tree | 95e43a351a5537415411b2ad1ed0d8d50bdd6898 /src/libnrtype | |
| parent | Make Sans the default if pango can't get the family name from the font descri... (diff) | |
| download | inkscape-84a5554a6a1dd4791a895f9c500e3e254b692f9d.tar.gz inkscape-84a5554a6a1dd4791a895f9c500e3e254b692f9d.zip | |
Change Sans to sans-serif on suv's advice in bug #1230241
(bzr r12909)
Diffstat (limited to 'src/libnrtype')
| -rw-r--r-- | src/libnrtype/font-lister.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnrtype/font-lister.cpp b/src/libnrtype/font-lister.cpp index 8dd6a2091..89d0cb037 100644 --- a/src/libnrtype/font-lister.cpp +++ b/src/libnrtype/font-lister.cpp @@ -287,7 +287,7 @@ namespace Inkscape PangoFontDescription *descr = pango_font_description_from_string(fontspec.c_str()); const gchar* family = pango_font_description_get_family(descr); if(!family) - family = "Sans"; + family = "sans-serif"; Glib::ustring Family = family; // PANGO BUG... |
