TAChart: Fix cursor not restoring when during PanDrag the left mouse button is pressed (http://www.lazarusforum.de/viewtopic.php?f=18&t=12413).

git-svn-id: trunk@61384 -
This commit is contained in:
wp 2019-06-14 09:50:38 +00:00
parent 010ccf9efa
commit b90a2cb91b

View File

@ -998,7 +998,7 @@ end;
procedure TChartTool.SetCursor;
begin
if ActiveCursor = crDefault then exit;
if (ActiveCursor = crDefault) or (ActiveCursor = FChart.Cursor) then exit;
FOldCursor := FChart.Cursor;
FChart.Cursor := ActiveCursor;
end;