From ca99fe94f094dbc1c1422fed1cc28550d4add2b8 Mon Sep 17 00:00:00 2001 From: George Litvinov Date: Wed, 21 Mar 2018 16:49:02 +0300 Subject: [PATCH] Set convert font-size to rem by default --- src/main/java/writer2latex/xhtml/XhtmlConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/writer2latex/xhtml/XhtmlConfig.java b/src/main/java/writer2latex/xhtml/XhtmlConfig.java index 8c0dbe7..be675e1 100644 --- a/src/main/java/writer2latex/xhtml/XhtmlConfig.java +++ b/src/main/java/writer2latex/xhtml/XhtmlConfig.java @@ -219,7 +219,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase { options[USE_DUBLIN_CORE] = new BooleanOption("use_dublin_core","true"); options[NOTES] = new BooleanOption("notes","true"); options[DISPLAY_HIDDEN_TEXT] = new BooleanOption("display_hidden_text", "false"); - options[CONVERT_TO_PX] = new BooleanOption("convert_to_px","true"); + options[CONVERT_TO_PX] = new BooleanOption("convert_to_px","false"); options[SCALING] = new Option("scaling","100%"); options[COLUMN_SCALING] = new Option("column_scaling","100%"); options[RELATIVE_FONT_SIZE] = new BooleanOption("relative_font_size","false");