From 912320affbeaf3d629661510ca245d1a38e39e0d Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 21 May 2009 13:27:39 +0000 Subject: [PATCH] --- PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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; } }