B2016-063 spell checker will now always stop at the end of a step section
This commit is contained in:
		| @@ -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); | ||||
| 			} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user