Calvert Alarms: Make subscript/superscript characters a little bigger for CompressPropSubSup flag

This commit is contained in:
Kathy Ruffing 2014-08-19 12:38:23 +00:00
parent 49ffee4bd0
commit 3d2757f094

View File

@ -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);