diff --git a/Elwig/Documents/DeliveryConfirmation.cs b/Elwig/Documents/DeliveryConfirmation.cs index 81e5cae..47633fd 100644 --- a/Elwig/Documents/DeliveryConfirmation.cs +++ b/Elwig/Documents/DeliveryConfirmation.cs @@ -120,8 +120,8 @@ namespace Elwig.Documents { } if (i == p.Buckets.Length - 1) { - sub.AddCell(NewTd($"{p.Weight:N0}")); - sub.AddCell(NewTd(p.IsNetWeight ? "\u2611" : "\u2610", 7, center: true).SetFont(SF).SetPadding(0)); + sub.AddCell(NewTd($"{p.Weight:N0}", right: true)); + sub.AddCell(NewTd(p.IsNetWeight ? "\u2611" : "\u2610", 7, right: true).SetFont(SF).SetPadding(0)); } else { sub.AddCell(NewCell(colspan: 2)); } diff --git a/Elwig/Documents/Document.cs b/Elwig/Documents/Document.cs index bf586c0..f16891e 100644 --- a/Elwig/Documents/Document.cs +++ b/Elwig/Documents/Document.cs @@ -297,7 +297,7 @@ namespace Elwig.Documents { protected Cell NewTh(string? text, float fontSize = 8, int rowspan = 1, int colspan = 1, bool left = false, bool rotated = false) { var p = new KernedParagraph(text ?? "", fontSize); - if (rotated) p.SetRotationAngle(rotated ? 0.5 * Math.PI : 0); + if (rotated) p.SetRotationAngle(0.5 * Math.PI); var cell = NewCell(p, rowspan: rowspan, colspan: colspan) .SetTextAlignment(left ? TextAlignment.LEFT : TextAlignment.CENTER) .SetVerticalAlignment(VerticalAlignment.MIDDLE)