LCL, DbGrid fix OnMouseMove, issue #34390

git-svn-id: trunk@59713 -
This commit is contained in:
jesus 2018-12-02 01:15:59 +00:00
parent 034fdfe9b3
commit 40a8d09984

View File

@ -2839,9 +2839,11 @@ end;
procedure TCustomDBGrid.MouseMove(Shift: TShiftState; X, Y: Integer);
begin
if (fGridState=gsSelecting) and not Dragging then
exit
else
if (fGridState=gsSelecting) and not Dragging then begin
if Assigned(OnMouseMove) then
OnMouseMove(Self, Shift, x, y);
exit;
end else
inherited MouseMove(Shift, X, Y);
end;