From 610012969429715fc174cfc957e212c67ab2ed1d Mon Sep 17 00:00:00 2001 From: blikblum Date: Sun, 27 Dec 2009 19:46:44 +0000 Subject: [PATCH] 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 - --- lcl/include/dbedit.inc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lcl/include/dbedit.inc b/lcl/include/dbedit.inc index 7599d36eb2..6760347914 100644 --- a/lcl/include/dbedit.inc +++ b/lcl/include/dbedit.inc @@ -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;