diff --git a/PROMS/Volian.Controls.Library/StepItem.cs b/PROMS/Volian.Controls.Library/StepItem.cs index 1874a810..75635a46 100644 --- a/PROMS/Volian.Controls.Library/StepItem.cs +++ b/PROMS/Volian.Controls.Library/StepItem.cs @@ -396,7 +396,7 @@ namespace Volian.Controls.Library get { return Width - lblTab.Left; } set { - Width = RTBMargin + value + lblTab.Left +3; // +3 to allow for change bar position + Width = RTBMargin + value + lblTab.Left; } } /// @@ -446,7 +446,7 @@ namespace Volian.Controls.Library lblTab.Width = tabString.Length * 8 * MyStepPanel.DPI / 96;// Adjust width for DPI Invalidate(); _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; } }