fixed saving editor value

git-svn-id: trunk@3797 -
This commit is contained in:
mattias 2003-01-09 18:05:20 +00:00
parent a8cf6d44d0
commit d94138614a

View File

@ -2814,16 +2814,16 @@ end;
procedure TCustomGrid.EditorGetValue;
begin
If Not (csDesigning in ComponentState) Then begin
EditorHide;
doEditorGetValue;
EditorHide;
End;
end;
procedure TCustomGrid.EditorSetValue;
begin
If Not (csDesigning in ComponentState) Then begin
EditorPos;
doEditorSetValue;
EditorPos;
End;
end;