Kaynağa Gözat

Merge pull request #303 from lee-hong/master

修复多列表格中行高度设置错误导致的pdf导出数据丢失问题
master
高杰 6 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
a037d0d935
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
  1. 5
      ureport2-core/src/main/java/com/bstek/ureport/model/Cell.java

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

@ -650,7 +650,10 @@ public class Cell implements ReportCell {
int dif=totalLineHeight-totalRowHeight;
if(dif>0){
int rowHeight=row.getHeight();
row.setRealHeight(rowHeight+dif);
int newRowHeight = rowHeight+dif;
if(row.getRealHeight()< newRowHeight){
row.setRealHeight(newRowHeight);
}
}
}

Yükleniyor…
İptal
Kaydet