aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/fop/cli/CommandLineOptions.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/cli/CommandLineOptions.java b/src/java/org/apache/fop/cli/CommandLineOptions.java
index 7a11df71a..9e83400f6 100644
--- a/src/java/org/apache/fop/cli/CommandLineOptions.java
+++ b/src/java/org/apache/fop/cli/CommandLineOptions.java
@@ -1057,7 +1057,8 @@ public class CommandLineOptions {
if (!strictValidation) {
fopFactoryBuilder.setStrictFOValidation(strictValidation);
}
- if (useComplexScriptFeatures) {
+ if (!useComplexScriptFeatures) {
+ // note: by default cs is enabled so we need to disable it
fopFactoryBuilder.setComplexScriptFeatures(useComplexScriptFeatures);
}
}