From 3d2757f094b980cb606dd8e43e8743d183ca5297 Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 19 Aug 2014 12:38:23 +0000 Subject: [PATCH] Calvert Alarms: Make subscript/superscript characters a little bigger for CompressPropSubSup flag --- PROMS/Volian.Print.Library/Rtf2iTextSharp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs index 6fe24be8..af8c1f6e 100644 --- a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs +++ b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs @@ -209,7 +209,7 @@ namespace Volian.Print.Library if (PrintOverride.CompressPropSubSup) { chk.SetTextRise(.33F * chk.Font.Size); - chk.Font.Size *= .5f; + chk.Font.Size *= .75f; } else { @@ -221,7 +221,7 @@ namespace Volian.Print.Library else if (visualText.Format.SuperScript < 0) { if (PrintOverride.CompressPropSubSup) - chk.Font.Size *= .5f; + chk.Font.Size *= .75f; else { chk.SetTextRise(-.25F * chk.Font.Size);