Browse Source

Merge pull request #168 in CORE/base-third from ~KERRY/base-third:release/9.0 to release/9.0

* commit '7284868af983de25295dd1cbcc641ad14e20994a':
  REPORT-13856 单元格设置行间距导出word不生效
release/9.0
ju 5 years ago
parent
commit
99a3a70453
  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