Components, TAChart: don't eat OnMouseMove event when AllowZoom = false, patch from wp, bug #25439

git-svn-id: trunk@43738 -
This commit is contained in:
maxim 2014-01-16 20:56:45 +00:00
parent 9a1699953a
commit 8d5dfb7e93

View File

@ -1178,6 +1178,7 @@ end;
procedure TZoomDragTool.MouseMove(APoint: TPoint);
begin
if not IsActive then exit;
SelectionRect := Rect(SelectionRect.Left, SelectionRect.Top, APoint.X, APoint.Y);
Handled;
end;