Skip to content

Commit

Permalink
Fix issue with PPTX right border (eclipse-birt#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
speckyspooky committed Jan 9, 2024
1 parent 7957703 commit 0365803
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,8 @@ protected void drawBorders(CellArea container) {
if (additionalColSpan != null) {
additionalcol = additionalColSpan;
}
int cellIdx = drawcurrentcolid + colspan + additionalcol + 1;
CellArea nextcell = ((RowArea) container.getParent()).getCell(cellIdx);
int nextCellIdx = drawcurrentcolid + colspan + additionalcol;
CellArea nextcell = ((RowArea) container.getParent()).getCell(nextCellIdx);

if (!isRTL) {// normal flow
writeSingleBorder(LEFTBORDERLINE, style.getLeftBorder());
Expand Down

0 comments on commit 0365803

Please sign in to comment.