summaryrefslogtreecommitdiffstats
path: root/src/libnrtype
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2013-02-09 12:52:04 +0000
committertavmjong-free <tavmjong@free.fr>2013-02-09 12:52:04 +0000
commit83ae846627474ee5aad75c1f4816a3faa7240a47 (patch)
treeb5958da4835e9399e417ec9535dd6b8cc16ba8c0 /src/libnrtype
parentAdd function to add document font-family entries to store. (diff)
downloadinkscape-83ae846627474ee5aad75c1f4816a3faa7240a47.tar.gz
inkscape-83ae846627474ee5aad75c1f4816a3faa7240a47.zip
Use update_font_list() in font-lister.cpp. Remove equivalent code in text-toolbar.cpp.
Change separator "tag" from "separatoR" to "#" in attempt to speed up start up. (bzr r12112)
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 9949be208..1e51d8803 100644
--- a/src/libnrtype/font-lister.cpp
+++ b/src/libnrtype/font-lister.cpp
@@ -116,7 +116,7 @@ namespace Inkscape
/* Insert separator */
if( !fontfamilies.empty() ) {
Gtk::TreeModel::iterator treeModelIter = font_list_store->prepend();
- (*treeModelIter)[FontList.font] = "separatoR";
+ (*treeModelIter)[FontList.font] = "#";
(*treeModelIter)[FontList.onSystem] = false;
}