diff options
| author | Adrian Johnson <ajohnson@redneon.com> | 2015-09-30 00:28:58 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2015-09-30 00:28:58 +0000 |
| commit | 30db4c1056a5bd715c5a738e36acc0f59edf4c95 (patch) | |
| tree | dfd3946ff4ae23f6a9c9efc7fa520b7ec453021b /src/main.cpp | |
| parent | Extensions. Measure Path: Add more layout options for text (Bug #1460422) (diff) | |
| download | inkscape-30db4c1056a5bd715c5a738e36acc0f59edf4c95.tar.gz inkscape-30db4c1056a5bd715c5a738e36acc0f59edf4c95.zip | |
Change command line PostScript export level to 3 (bug #1432310)
(bzr r14389)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 26c25af02..5393ddc6f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -212,7 +212,7 @@ static gboolean sp_export_id_only = FALSE; static gchar *sp_export_svg = NULL; static gchar *sp_export_ps = NULL; static gchar *sp_export_eps = NULL; -static gint sp_export_ps_level = 2; +static gint sp_export_ps_level = 3; static gchar *sp_export_pdf = NULL; static gchar *sp_export_pdf_version = NULL; static gchar *sp_export_emf = NULL; @@ -260,7 +260,7 @@ static void resetCommandlineGlobals() { sp_export_svg = NULL; sp_export_ps = NULL; sp_export_eps = NULL; - sp_export_ps_level = 2; + sp_export_ps_level = 3; sp_export_pdf = NULL; sp_export_pdf_version = NULL; sp_export_emf = NULL; @@ -405,7 +405,7 @@ struct poptOption options[] = { {"export-ps-level", 0, POPT_ARG_INT, &sp_export_ps_level, SP_ARG_EXPORT_PS_LEVEL, N_("Choose the PostScript Level used to export. Possible choices are" - " 2 (the default) and 3"), + " 2 and 3 (the default)"), N_("PS Level")}, {"export-pdf", 'A', |
