From 19598fad87ea6ccb8c46564ead704c26d5ffb630 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 6 Sep 2018 19:34:58 +0000 Subject: [PATCH] B2016-063 spell checker will now always stop at the end of a step section --- PROMS/Volian.Controls.Library/VlnSpellCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }