]> source.dussan.org Git - poi.git/commitdiff
While working on 61475, need to add a new line after picture text...not worth separat...
authorTim Allison <tallison@apache.org>
Thu, 31 Aug 2017 20:20:24 +0000 (20:20 +0000)
committerTim Allison <tallison@apache.org>
Thu, 31 Aug 2017 20:20:24 +0000 (20:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1806843 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java

index ae66ac96613fffca05dc8234e98b6ad3affed0aa..80b56c749b0e0f23daaad2d8e04cb218087079a5 100644 (file)
@@ -1098,7 +1098,7 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
         }
         // Any picture text?
         if (pictureText != null && pictureText.length() > 0) {
-            text.append("\n").append(pictureText);
+            text.append("\n").append(pictureText).append("\n");
         }
         c.dispose();
         return text.toString();