mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
parent
034fdfe9b3
commit
40a8d09984
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user