diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index af624c61..28305256 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -71,9 +71,8 @@ namespace VEPROMS.CSLA.Library { get { - // TODO: eventually want styles - //if (_WindowsFont == null) - //{ + if (_WindowsFont == null) + { FontStyle style = FontStyle.Regular; if (Style != E_Style.None) { @@ -85,7 +84,7 @@ namespace VEPROMS.CSLA.Library style |= FontStyle.Underline; } _WindowsFont = new Font(Family, (float)Size, style); - //} + } return _WindowsFont; } }