Skip to content

Commit

Permalink
Add padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Bykiev committed Sep 9, 2023
1 parent 0aa080f commit 067015e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ooxml/XSSF/UserModel/XSSFSheet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2043,7 +2043,7 @@ public double GetColumnWidth(int columnIndex)
if (pr.defaultColWidth != 0.0)
width = pr.defaultColWidth;
else if (pr.baseColWidth != 0)
width = pr.baseColWidth;
width = pr.baseColWidth + 5;
}

if (width == 0)
Expand Down

0 comments on commit 067015e

Please sign in to comment.