This commit is contained in:
Kathy Ruffing 2011-01-05 14:29:17 +00:00
parent 894f295c26
commit c073e06c46

View File

@ -396,7 +396,7 @@ namespace Volian.Controls.Library
get { return Width - lblTab.Left; } get { return Width - lblTab.Left; }
set set
{ {
Width = RTBMargin + value + lblTab.Left +3; // +3 to allow for change bar position Width = RTBMargin + value + lblTab.Left;
} }
} }
/// <summary> /// <summary>
@ -446,7 +446,7 @@ namespace Volian.Controls.Library
lblTab.Width = tabString.Length * 8 * MyStepPanel.DPI / 96;// Adjust width for DPI lblTab.Width = tabString.Length * 8 * MyStepPanel.DPI / 96;// Adjust width for DPI
Invalidate(); Invalidate();
_MyStepRTB.Left = lblTab.Left + lblTab.Width;// +2; _MyStepRTB.Left = lblTab.Left + lblTab.Width;// +2;
_MyStepRTB.Width = Width - _MyStepRTB.Left - RTBMargin - 3; // adjust for Change Bar Position _MyStepRTB.Width = Width - _MyStepRTB.Left - RTBMargin;
_TabFormat = value; // tabString; _TabFormat = value; // tabString;
} }
} }