This commit is contained in:
Kathy Ruffing 2010-11-18 15:46:33 +00:00
parent ac1acd6c4e
commit 2e3f6cba97

View File

@ -7,6 +7,7 @@ using System.Text;
using System.Windows.Forms; using System.Windows.Forms;
using VEPROMS.CSLA.Library; using VEPROMS.CSLA.Library;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using Volian.Base.Library;
namespace Volian.Controls.Library namespace Volian.Controls.Library
{ {
@ -145,7 +146,7 @@ namespace Volian.Controls.Library
set set
{ {
_MyItemInfo = value; _MyItemInfo = value;
SetToolTip(_MyItemInfo.ToolTip); if (VlnSettings.StepTypeToolType)SetToolTip(_MyItemInfo.ToolTip);
ChangeBar = _MyItemInfo.HasChangeBar(); ChangeBar = _MyItemInfo.HasChangeBar();
value.MyContent.Changed += new ContentInfoEvent(MyContent_Changed); value.MyContent.Changed += new ContentInfoEvent(MyContent_Changed);
} }