diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs index f1fcadcb..45667407 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs @@ -669,7 +669,8 @@ namespace VEPROMS.CSLA.Library char tst = Cmd[1]; // consider rtf commands up/dn/b/ul/i // B2018-067 Added more specific comparison to eliminate \u8209? from consideration - if (Cmd.StartsWith("\\up") || tst == 'd' || tst == 'b' || Cmd.StartsWith("\\ul") || tst == 'i') return true; + // B2018-128 Added check for font specification (tst =='f') so we don't get a hard space after the font command (happend inserting RO in tables) - Farely SAMGs + if (Cmd.StartsWith("\\up") || tst == 'd' || tst == 'b' || Cmd.StartsWith("\\ul") || tst == 'i' || tst =='f') return true; } return false; }