diff --git a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs index 9ae41442..d6cb70f9 100644 --- a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs +++ b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs @@ -617,9 +617,10 @@ namespace Volian.Print.Library if (_MyFont == null) { _MyFont = font; - //B2021-055 if first character was a bold symbol, entire line was bold + //B2021-055 If first character was a bold symbol, entire line was bold // Set the MyParagraph font to an not bolded version - _MyParagraph.Font = Volian.Svg.Library.VolianPdf.GetFont(font.Familyname, (int)font.Size, 0); + //B2021-058 Needed to double font size because GetFont will divide it to zero + _MyParagraph.Font = Volian.Svg.Library.VolianPdf.GetFont(font.Familyname, (int)(font.Size * 2), 0); } }