Browse Source

Update Cell.java

换行的行高计算多了2px,导致换行较多时段落出现大段空白
master
lee-hong 6 years ago
committed by GitHub
parent
commit
5c40b1d191
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ureport2-core/src/main/java/com/bstek/ureport/model/Cell.java

2
ureport2-core/src/main/java/com/bstek/ureport/model/Cell.java

@ -596,7 +596,7 @@ public class Cell implements ReportCell {
lineHeight=cellStyle.getLineHeight(); lineHeight=cellStyle.getLineHeight();
} }
fontSize=fontSize*lineHeight; fontSize=fontSize*lineHeight;
int singleLineHeight=UnitUtils.pointToPixel(fontSize);//fontMetrics.getHeight(); int singleLineHeight=UnitUtils.pointToPixel(fontSize)-2;//fontMetrics.getHeight();
if(textWidth<=totalColumnWidth){ if(textWidth<=totalColumnWidth){
return; return;
} }

Loading…
Cancel
Save