Merged revision(s) 54520 #e366739dbb from trunk:

LCL: fix exception in DbGrid on clicking when dataset is inactive, patch from Soner, issue #31631
........

git-svn-id: branches/fixes_1_6@54551 -
This commit is contained in:
maxim 2017-04-06 23:16:45 +00:00
parent 9808d18f93
commit 39509abee2

View File

@ -3003,7 +3003,7 @@ end;
function TCustomDBGrid.MouseButtonAllowed(Button: TMouseButton): boolean;
begin
Result:= (Button=mbLeft) or (dgAnyButtonCanSelect in Options);
Result:= FDataLink.Active and ((Button=mbLeft) or (dgAnyButtonCanSelect in Options));
end;
procedure TCustomDBGrid.DrawAllRows;