Skip to content

Commit

Permalink
Merge pull request #260 from PalAditya/master
Browse files Browse the repository at this point in the history
Fix issue #258
  • Loading branch information
andreasrosdal authored Sep 16, 2019
2 parents 6d8fe08 + 9f6680e commit 25d759d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openpdf/src/main/java/com/lowagie/text/pdf/PdfPRow.java
Original file line number Diff line number Diff line change
Expand Up @@ -607,9 +607,9 @@ public PdfPRow splitRow(PdfPTable table, int rowIndex, float new_height) {
float y;
ColumnText ct = ColumnText.duplicate(cell.getColumn());
float left = cell.getLeft() + cell.getEffectivePaddingLeft();
float bottom = cell.getTop() + cell.getEffectivePaddingBottom() - newHeight;
float right = cell.getRight() - cell.getEffectivePaddingRight();
float top = cell.getTop() - cell.getEffectivePaddingTop();
float bottom = top + cell.getEffectivePaddingBottom() - newHeight;
float right = cell.getRight() - cell.getEffectivePaddingRight();
switch (cell.getRotation()) {
case 90:
case 270:
Expand Down

0 comments on commit 25d759d

Please sign in to comment.