LazMapViewer: Apply EditMark.CursorShape only when mouse is over MapView

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9671 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-03-10 21:56:53 +00:00
parent 03a94f1e25
commit d46dae3faa

View File

@ -2977,7 +2977,8 @@ procedure TMapView.MouseMove(Shift: TShiftState; X, Y: Integer);
Hits := Layers.HitTest(A);
try
FEditMark.UpdateFrom(Hits);
Screen.Cursor := FEditMark.CursorShape;
Cursor := FEditMark.CursorShape;
// Screen.Cursor := FEditMark.CursorShape;
finally
Hits.Free;
end;