mirror of https://github.com/apache/poi.git
fix missing table borders in HTML in Word-to-HTML converter
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
40b9e5d383
commit
c7ae9b50db
|
@ -46,7 +46,10 @@ public class WordToHtmlUtils extends AbstractWordUtils
|
|||
}
|
||||
|
||||
style.append( ":" );
|
||||
style.append( getBorderWidth( borderCode ) );
|
||||
if ( borderCode.getLineWidth() < 8 )
|
||||
style.append( "thin" );
|
||||
else
|
||||
style.append( getBorderWidth( borderCode ) );
|
||||
style.append( ' ' );
|
||||
style.append( getBorderType( borderCode ) );
|
||||
style.append( ' ' );
|
||||
|
|
Loading…
Reference in New Issue