This commit is contained in:
Kathy Ruffing 2009-05-21 13:27:39 +00:00
parent 3a57cafc16
commit 912320affb

View File

@ -71,9 +71,8 @@ namespace VEPROMS.CSLA.Library
{ {
get get
{ {
// TODO: eventually want styles if (_WindowsFont == null)
//if (_WindowsFont == null) {
//{
FontStyle style = FontStyle.Regular; FontStyle style = FontStyle.Regular;
if (Style != E_Style.None) if (Style != E_Style.None)
{ {
@ -85,7 +84,7 @@ namespace VEPROMS.CSLA.Library
style |= FontStyle.Underline; style |= FontStyle.Underline;
} }
_WindowsFont = new Font(Family, (float)Size, style); _WindowsFont = new Font(Family, (float)Size, style);
//} }
return _WindowsFont; return _WindowsFont;
} }
} }