From 8e724a05b87b667f143c2c37147f0daef190a3ca Mon Sep 17 00:00:00 2001 From: kerry Date: Thu, 3 Jan 2019 16:03:50 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-13856=20=E5=8D=95=E5=85=83=E6=A0=BC?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E8=A1=8C=E9=97=B4=E8=B7=9D=E5=AF=BC=E5=87=BA?= =?UTF-8?q?word=E4=B8=8D=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java b/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java index 713853c7d..9fe60e0b6 100755 --- a/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java +++ b/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)); }