ValEdit: Disable goAutoAddRowsSkipContentCheck (temoprary workaround).

git-svn-id: trunk@40384 -
This commit is contained in:
bart 2013-02-24 13:48:21 +00:00
parent 72cba621d3
commit 41464aaec9

View File

@ -839,6 +839,8 @@ begin
//cannot allow goColMoving
if (goColMoving in AValue) then AValue := AValue - [goColMoving];
if (goAutoAddRows in AValue) and not (KeyAdd in KeyOptions) then AValue := AValue - [goAutoAddRows];
//temporarily disable this, it causes crashes
if (goAutoAddRowsSkipContentCheck in AValue) then AValue := AValue - [goAutoAddRowsSkipContentCheck];
inherited Options := AValue;
end;