From 5a086f955bb72ee597b08d55229194599e8bd20a Mon Sep 17 00:00:00 2001 From: Rich Date: Fri, 20 Oct 2017 13:17:48 +0000 Subject: [PATCH] B2017-238 Bullets were not printing. Logic had been added for Prestige Elite Tall font that also needed to work for Letter Gothic Tall. --- PROMS/Volian.Print.Library/Rtf2iTextSharp.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs index 58f87866..a2771f76 100644 --- a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs +++ b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs @@ -326,7 +326,8 @@ namespace Volian.Print.Library // The bullet character for some unknown reason was entered in a text font rather than a symbol font // switch from x25cf ot x2022 moves to a valid bullet character in the text font // B2017-171 Mcguire reported their bullet substeps print a smaller bullet than before - if (font.Familyname == "Prestige Elite Tall") + // B2017-238 V.C. Summer Bullets were not printing. Needed to check for Letter Gothic Tall font + if (font.Familyname == "Prestige Elite Tall" || font.Familyname == "Letter Gothic Tall") ProcessMeans(visualText, visualText.Text.Replace("\u25cf", "\u2022"), font); else ProcessMeans(visualText, visualText.Text, font);