Browse Source

Merge pull request #170 in CORE/base-third from release/9.0 to master

* commit '99a3a70453ac41f6016e0f6a4b606f5b6653d04a':
  REPORT-13856 单元格设置行间距导出word不生效
master
ju 5 years ago
parent
commit
937997acad
  1. 2
      fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java

2
fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java

@ -637,7 +637,7 @@ public class RtfParagraphStyle extends RtfFont {
result.write(RtfParagraphStyle.SPACING_AFTER);
result.write(intToByteArray(this.spacingAfter));
}
if(this.lineLeading > 0) {
if(this.lineLeading != 0) {
result.write(RtfParagraph.LINE_SPACING);
result.write(intToByteArray(this.lineLeading));
}

Loading…
Cancel
Save