summaryrefslogtreecommitdiffstats
path: root/src/libnrtype
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-01-11 08:05:35 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-01-11 08:05:35 +0000
commit8cbe806d6ae4b35e258402cab5295cdb0bd6de47 (patch)
tree6b2ddd9e7f067778c5309f507a0d54b5f09f584d /src/libnrtype
parentMerge branch 'compile-with-gold' of gitlab.com:houz/inkscape (diff)
parentDon't double-escape names of used fonts (diff)
downloadinkscape-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.cpp2
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];