Bug fix B2014-075, the spell checker would crash PROMS when it tried to process a RO Table. We needed to skip RO tables during Spell Checking, since ROs can only be modified in the RO Editor
This commit is contained in:
@@ -974,6 +974,7 @@ namespace Volian.Controls.Library
|
||||
}
|
||||
public override bool SpellCheckNext()
|
||||
{
|
||||
if (MyFlexGrid.IsRoTable) return true; // skip RO Tables
|
||||
int r = MyFlexGrid.Row;
|
||||
int c = MyFlexGrid.Col;
|
||||
int w = MyFlexGrid.Cols.Count;
|
||||
|
Reference in New Issue
Block a user