fix: allow text breaks in table cells after Word-to-FO converter

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149592 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-22 12:48:15 +00:00
parent 1ed12025df
commit 8f070d04b3
1 changed files with 2 additions and 1 deletions

View File

@ -318,7 +318,8 @@ public class WordToFoUtils extends AbstractWordUtils
}
if ( !tableRow.cantSplit() )
{
tableRowElement.setAttribute( "keep-together", "always" );
tableRowElement.setAttribute( "keep-together.within-column",
"always" );
}
}