From f5c15966617a98609012a1eac75819bf81575765 Mon Sep 17 00:00:00 2001 From: Yegor Kozlov Date: Mon, 19 Dec 2011 08:25:46 +0000 Subject: [PATCH] Bugzilla 52219: fixed XSSFSimpleShape to set rich text attributes from XSSFRichTextString git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1220645 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/poi/xssf/usermodel/XSSFSimpleShape.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSimpleShape.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSimpleShape.java index 0de7b9c064..f208177d9e 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSimpleShape.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSimpleShape.java @@ -191,6 +191,11 @@ public class XSSFSimpleShape extends XSSFShape { // TODO - instantiable supercla CTTextFont rFont = rPr.addNewLatin(); rFont.setTypeface(pr.getRFontArray(0).getVal()); } + + if(pr.sizeOfSzArray() > 0) { + int sz = (int)(pr.getSzArray(0).getVal()*100); + rPr.setSz(sz); + } if(pr.sizeOfColorArray() > 0) { CTSolidColorFillProperties fill = rPr.isSetSolidFill() ? rPr.getSolidFill() : rPr.addNewSolidFill(); -- 2.39.5