Skip to content

Commit

Permalink
Fix BeginFigure() usage in Sector to be filled (#13304)
Browse files Browse the repository at this point in the history
  • Loading branch information
robloo authored Oct 19, 2023
1 parent e49d61a commit 3a428a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avalonia.Controls/Shapes/Sector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static Sector()
var streamGeometry = new StreamGeometry();
using (StreamGeometryContext context = streamGeometry.Open())
{
context.BeginFigure(startCurvePoint, false);
context.BeginFigure(startCurvePoint, isFilled: true);
context.ArcTo(
endCurvePoint,
size,
Expand Down

0 comments on commit 3a428a3

Please sign in to comment.