diff options
| author | bulia byak <buliabyak@gmail.com> | 2008-05-01 16:12:39 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2008-05-01 16:12:39 +0000 |
| commit | 5b26e7642a6b2fb11bd8371aafd816c5a130ca36 (patch) | |
| tree | 2e43aa55679856664739940ecdecdfe6fa3312ee /src/main.cpp | |
| parent | Removed Live Preview option from Add Nodes extension, as it didn't work anyway. (diff) | |
| download | inkscape-5b26e7642a6b2fb11bd8371aafd816c5a130ca36.tar.gz inkscape-5b26e7642a6b2fb11bd8371aafd816c5a130ca36.zip | |
enable text-to-path command line control for pdf export
(bzr r5567)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
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); } |
