While working on 61475, need to add a new line after picture text...not worth separate ticket.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1806843 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tim Allison 2017-08-31 20:20:24 +00:00
parent 235d102f26
commit 60176900fc

View 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();