lcl: In TDBEdit FDataLink.UpdateRecord was being called twice after Tab key is pressed (KillFocus and a direct call). Remove the direct call.

git-svn-id: trunk@23301 -
This commit is contained in:
blikblum 2009-12-27 19:46:44 +00:00
parent c5169e801b
commit 6100129694

View File

@ -156,10 +156,6 @@ begin
FDatalink.Edit
else
Key := VK_UNKNOWN;
end else
if Key=VK_TAB then begin
if FDataLink.CanModify and FDatalink.Editing then
FDataLink.UpdateRecord;
end;
end;