mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 21:00:43 +02:00
parent
034fdfe9b3
commit
40a8d09984
@ -2839,9 +2839,11 @@ end;
|
|||||||
|
|
||||||
procedure TCustomDBGrid.MouseMove(Shift: TShiftState; X, Y: Integer);
|
procedure TCustomDBGrid.MouseMove(Shift: TShiftState; X, Y: Integer);
|
||||||
begin
|
begin
|
||||||
if (fGridState=gsSelecting) and not Dragging then
|
if (fGridState=gsSelecting) and not Dragging then begin
|
||||||
exit
|
if Assigned(OnMouseMove) then
|
||||||
else
|
OnMouseMove(Self, Shift, x, y);
|
||||||
|
exit;
|
||||||
|
end else
|
||||||
inherited MouseMove(Shift, X, Y);
|
inherited MouseMove(Shift, X, Y);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user