B2022-081 Fixed issue where clock symbol was not appearing in linked enhanced step
This commit is contained in:
parent
a858733052
commit
a8b8f9f9c7
@ -2897,7 +2897,8 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
get
|
||||
{
|
||||
if(_SpecialCharacters==null){
|
||||
// B2022-081 needed to add clock symbol so that it properly translate over to enhanced document
|
||||
if (_SpecialCharacters==null){
|
||||
_SpecialCharacters = new Dictionary<string, string>();
|
||||
_SpecialCharacters.Add(@"\u916?", "{Delta}");
|
||||
_SpecialCharacters.Add(@"\line", "{Hard Return1}");
|
||||
@ -2934,6 +2935,7 @@ namespace VEPROMS.CSLA.Library
|
||||
_SpecialCharacters.Add(@"\u9830?","{diamond}");
|
||||
_SpecialCharacters.Add(@"\u8593?","{Up Arrow}");
|
||||
_SpecialCharacters.Add(@"\u8595?","{Down Arrow}");
|
||||
_SpecialCharacters.Add(@"\u9774?","{Clock}");
|
||||
}
|
||||
return _SpecialCharacters;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user