B2016-063 spell checker will now always stop at the end of a step section
This commit is contained in:
parent
fafaf62b6d
commit
19598fad87
@ -27,7 +27,7 @@ namespace Volian.Controls.Library
|
|||||||
while (MyEditItem.SpellCheckNext())
|
while (MyEditItem.SpellCheckNext())
|
||||||
{
|
{
|
||||||
ItemInfo next = MyEditItem.MyItemInfo.SearchNext;
|
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
|
return; // spell check only current section
|
||||||
MyEditItem.MyStepPanel.MyStepTabPanel.MyDisplayTabControl.OpenItem(next);
|
MyEditItem.MyStepPanel.MyStepTabPanel.MyDisplayTabControl.OpenItem(next);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user