mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
[github-261] Correct Maximum Width Calculation of unmerged Cells. Thanks to thoniTUB. This closes #261
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894127 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3e8d6b4bbd
commit
cdbbbb6726
@ -102,7 +102,7 @@ import org.apache.poi.util.Internal;
|
||||
*/
|
||||
public void setMaxColumnWidths(double unmergedWidth, double mergedWidth) {
|
||||
withUseMergedCells = Math.max(withUseMergedCells, mergedWidth);
|
||||
withSkipMergedCells = Math.max(withUseMergedCells, unmergedWidth);
|
||||
withSkipMergedCells = Math.max(withSkipMergedCells, unmergedWidth);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user