diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-01-11 08:05:35 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-01-11 08:05:35 +0000 |
| commit | 8cbe806d6ae4b35e258402cab5295cdb0bd6de47 (patch) | |
| tree | 6b2ddd9e7f067778c5309f507a0d54b5f09f584d /src/libnrtype | |
| parent | Merge branch 'compile-with-gold' of gitlab.com:houz/inkscape (diff) | |
| parent | Don't double-escape names of used fonts (diff) | |
| download | inkscape-8cbe806d6ae4b35e258402cab5295cdb0bd6de47.tar.gz inkscape-8cbe806d6ae4b35e258402cab5295cdb0bd6de47.zip | |
Merge branch 'escapefontspec' of gitlab.com:darktrojan/inkscape
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 35dc5ecc3..1b75f70af 100644 --- a/src/libnrtype/font-lister.cpp +++ b/src/libnrtype/font-lister.cpp @@ -1085,7 +1085,7 @@ void font_lister_cell_data_func(GtkCellLayout * /*cell_layout*/, markup = "<span foreground='darkblue'>"; /* See if font-family on system */ - std::vector<Glib::ustring> tokens = Glib::Regex::split_simple("\\s*,\\s*", family_escaped); + std::vector<Glib::ustring> tokens = Glib::Regex::split_simple("\\s*,\\s*", family); for (size_t i = 0; i < tokens.size(); ++i) { Glib::ustring token = tokens[i]; |
