This commit is contained in:
2013-02-08 12:22:26 +00:00
parent 591f3df242
commit 7f58611e6b
4 changed files with 180 additions and 39 deletions

View File

@@ -214,7 +214,8 @@ namespace VEPROMS.CSLA.Library
Partials = 0x10000, // Do replace even on partial matches
Plackeep = 0x20000, // Do replace in PlaceKeepers
InSecTitle = 0x40000
InSecTitle = 0x40000,
BeforeTrans = 0x80000 // Only do replace if the string occurs immediately before a transition.
}
public enum E_ArrowKeys : uint
{

View File

@@ -5022,6 +5022,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _LowerCaseStepInTran, "@LowerCaseStepInTran");
}
}
private LazyLoad<bool> _BoldTransition;
public bool BoldTransition
{
get
{
return LazyLoad(ref _BoldTransition, "@BoldTransition");
}
}
}
#endregion
#region TransType