From 6b8503026b04a78379346257db54456ab8961c9b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 9 Aug 2017 16:59:42 +0000 Subject: [PATCH] B2017-171 bullet substep were printing a smaller bullet than prior versions --- PROMS/Volian.Print.Library/Rtf2iTextSharp.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs index 19b23934..10e029f0 100644 --- a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs +++ b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs @@ -308,7 +308,11 @@ 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 - ProcessMeans(visualText, visualText.Text.Replace("\u25cf", "\u2022"), font); + // B2017-171 Mcguire reported their bullet substeps print a smaller bullet than before + if (font.Familyname == "Prestige Elite Tall") + ProcessMeans(visualText, visualText.Text.Replace("\u25cf", "\u2022"), font); + else + ProcessMeans(visualText, visualText.Text, font); } ProfileTimer.Pop(profileDepth); }