From: buliabyak Date: Thu, 1 May 2008 16:12:39 +0000 (+0000) Subject: enable text-to-path command line control for pdf export X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7efd3764721d61e678031b6dfcf52560475a4515;p=inkscape.git enable text-to-path command line control for pdf export --- diff --git a/src/main.cpp b/src/main.cpp index eafa07c53..46d3082f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1263,6 +1263,12 @@ static void do_export_pdf(SPDocument* doc, gchar const* uri, char const* mime) (*i)->set_param_bool ("exportCanvas", FALSE); } + if (sp_export_text_to_path) { + (*i)->set_param_bool("textToPath", TRUE); + } else { + (*i)->set_param_bool("textToPath", FALSE); + } + (*i)->save(doc, uri); }