Skip to content

Commit

Permalink
fix(shapes): Fix the Polygon on WASM (not initialized)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Jun 17, 2020
1 parent 473dd3b commit 435e56f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Uno.UI/UI/Xaml/Shapes/Polygon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public PointCollection Points
public Polygon()
{
Points = new PointCollection();
InitializePartial();
}

partial void InitializePartial();
Expand Down

0 comments on commit 435e56f

Please sign in to comment.