This commit is contained in:
Kathy Ruffing 2009-05-21 13:28:59 +00:00
parent f0f719b9f6
commit 09733595f3

View File

@ -297,6 +297,7 @@ namespace Volian.Controls.Library
get { return _SelectedStepRTB; }
set
{
StepRTB lastRTB = _SelectedStepRTB;
if(value != null)
value.BackColor = ActiveColor; // Set the active color
if (_SelectedStepRTB == value) return; // Same - No Change
@ -304,11 +305,18 @@ namespace Volian.Controls.Library
{
_SelectedStepRTB.BackColor = InactiveColor;
_SelectedStepRTB.SaveText(); // Save any changes to the text
_SelectedStepRTB.SaveConfig(); // This may be redundant
_SelectedStepRTB.SaveConfig(); // This may be redundant
_SelectedStepRTB.RTBFillIn(false);
_SelectedStepRTB.ViewRTB = true;
}
_SelectedStepRTB = value;
if (value != null && _SelectedItemInfo.ItemID != value.MyItemInfo.ItemID)
SelectedItemInfo = value.MyItemInfo;
if (value != null)
{
_SelectedStepRTB.ViewRTB = false;
_SelectedStepRTB.RTBFillIn(true);
if (_SelectedItemInfo.ItemID != value.MyItemInfo.ItemID)
SelectedItemInfo = value.MyItemInfo;
}
//vlnStackTrace.ShowStack("_DisplayRTB = {0}", _DisplayRTB.MyItem.ItemID);// Show StackTrace
}
}