Skip to content

Commit 3aa24d8

Browse files
authored
fix: progress ring initialization exception #1356 (#1357)
1 parent 75aa3f8 commit 3aa24d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Wpf.Ui/Controls/Arc/Arc.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static Arc()
5757
// Modify the metadata of the StrokeStartLineCap dependency property.
5858
StrokeStartLineCapProperty.OverrideMetadata(
5959
typeof(Arc),
60-
new PropertyMetadata(PenLineCap.Round, PropertyChangedCallback)
60+
new FrameworkPropertyMetadata(PenLineCap.Round, PropertyChangedCallback)
6161
);
6262
}
6363

0 commit comments

Comments
 (0)