https://issues.apache.org/bugzilla/show_bug.cgi?id=54082
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from [email protected] --- I have looked at the source code, one possible patch would be to modify the writeHidden method in this way: private int writeHidden(XSSFRow xRow, int rowIndex, boolean hidden) { int level = xRow.getCTRow().getOutlineLevel(); int currentRow; for (currentRow = rowIndex; currentRow < getLastRowNum(); currentRow++) { if (getRow(currentRow) == null || getRow(currentRow).getCTRow().getOutlineLevel() < level) { break; }else{ getRow(currentRow).getCTRow().setHidden(hidden); } } return currentRow; } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
