Skip to content

Commit

Permalink
fix: progress ring initialization exception #1356 (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
gleclair authored Feb 21, 2025
1 parent 75aa3f8 commit 3aa24d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Wpf.Ui/Controls/Arc/Arc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static Arc()
// Modify the metadata of the StrokeStartLineCap dependency property.
StrokeStartLineCapProperty.OverrideMetadata(
typeof(Arc),
new PropertyMetadata(PenLineCap.Round, PropertyChangedCallback)
new FrameworkPropertyMetadata(PenLineCap.Round, PropertyChangedCallback)
);
}

Expand Down

0 comments on commit 3aa24d8

Please sign in to comment.