fixed the problem where the last item in the step list was not scrolling all the way into view

logic to change background color if the item contains an annotation
This commit is contained in:
2010-01-11 14:05:31 +00:00
parent bf8a0560e7
commit cfb58493fa
5 changed files with 72 additions and 4 deletions

View File

@@ -334,7 +334,8 @@ namespace Volian.Controls.Library
if (_SelectedStepRTB == value) return; // Same - No Change
if (_SelectedStepRTB != null)
{
_SelectedStepRTB.BackColor = InactiveColor;
//_SelectedStepRTB.BackColor = InactiveColor;
_SelectedStepRTB.SetBackColor();
_SelectedStepRTB.SaveText(); // Save any changes to the text
_SelectedStepRTB.SaveConfig(); // This may be redundant
_SelectedStepRTB.RTBFillIn(false);