diff --git a/PROMS/Volian.Controls.Library/StepRTB.cs b/PROMS/Volian.Controls.Library/StepRTB.cs index e54da5ab..c73b6ec1 100644 --- a/PROMS/Volian.Controls.Library/StepRTB.cs +++ b/PROMS/Volian.Controls.Library/StepRTB.cs @@ -639,10 +639,9 @@ namespace Volian.Controls.Library // (Proportional) font, the hardspace appeared to be 2 spaces (really it was showing the space as the widest // width character). So instead of a hard space, a single quote "'" was used to designate where the hardspace // would be. This is only used for display, printing works. - if (_MyItemInfo.FormatStepData != null && _MyItemInfo.FormatStepData.Font.FontIsProportional()) - Rtf = Rtf.Replace(@"\'a0", "'"); - else - Rtf = Rtf.Replace(@"\'a0", @"\u1?"); + //B2019-155 Hard spaces were displace as a square box for non-proportional fonts. + // To fix this, we removed the check for a proportional font and now replace the hard space with a "'" mark for all fonts + Rtf = Rtf.Replace(@"\'a0", "'"); } OrigRTF = Rtf; _InitializingRTB = false;