You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2015/11/01 00:08:52 UTC

svn commit: r1711705 - /poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java

Author: kiwiwings
Date: Sat Oct 31 23:08:52 2015
New Revision: 1711705

URL: http://svn.apache.org/viewvc?rev=1711705&view=rev
Log:
#45124 - inserting text or images wipes out boldness and makes everything italic

Modified:
    poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java?rev=1711705&r1=1711704&r2=1711705&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFTextRun.java Sat Oct 31 23:08:52 2015
@@ -116,7 +116,7 @@ public final class HSLFTextRun implement
 
 		BitMaskTextProp prop = (BitMaskTextProp)characterStyle.findByName(CharFlagsTextProp.NAME);
 
-		if (prop == null){
+		if (prop == null || !prop.getSubPropMatches()[index]) {
             int txtype = parentParagraph.getRunType();
 			HSLFSheet sheet = parentParagraph.getSheet();
 			if (sheet != null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org