Set tables width to relative by default

This commit is contained in:
Georgy Litvinov 2018-07-31 14:38:14 +03:00 committed by Georgy Litvinov
parent fcce0d14d6
commit 31af77c9a1

View file

@ -197,7 +197,7 @@ public class XhtmlConfig extends writer2latex.base.ConfigBase {
options[FRAME_FORMATTING] = new XhtmlFormatOption("frame_formatting","convert_all");
options[SECTION_FORMATTING] = new XhtmlFormatOption("section_formatting","convert_all");
options[TABLE_FORMATTING] = new XhtmlFormatOption("table_formatting","convert_all");
options[TABLE_SIZE] = new IntegerOption("table_size","auto") {
options[TABLE_SIZE] = new IntegerOption("table_size","relative") {
@Override public void setString(String sValue) {
super.setString(sValue);
if ("relative".equals(sValue)) { nValue = RELATIVE; }