diff --git a/PROMS/Volian.Controls.Library/VlnSpellCheck.cs b/PROMS/Volian.Controls.Library/VlnSpellCheck.cs index 6c2483a0..00261916 100644 --- a/PROMS/Volian.Controls.Library/VlnSpellCheck.cs +++ b/PROMS/Volian.Controls.Library/VlnSpellCheck.cs @@ -27,7 +27,7 @@ namespace Volian.Controls.Library while (MyEditItem.SpellCheckNext()) { ItemInfo next = MyEditItem.MyItemInfo.SearchNext; - if (next == null || next.IsSection) + if (next == null || !next.IsStep) // B2016-063 check if next is not a step type instead of specifically a section return; // spell check only current section MyEditItem.MyStepPanel.MyStepTabPanel.MyDisplayTabControl.OpenItem(next); }