mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
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:
parent
9808d18f93
commit
39509abee2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user