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:
parent
b3abf86b9f
commit
eb6a6f40a5
@ -974,6 +974,7 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
public override bool SpellCheckNext()
|
public override bool SpellCheckNext()
|
||||||
{
|
{
|
||||||
|
if (MyFlexGrid.IsRoTable) return true; // skip RO Tables
|
||||||
int r = MyFlexGrid.Row;
|
int r = MyFlexGrid.Row;
|
||||||
int c = MyFlexGrid.Col;
|
int c = MyFlexGrid.Col;
|
||||||
int w = MyFlexGrid.Cols.Count;
|
int w = MyFlexGrid.Cols.Count;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user