未验证 提交 bf1d65bf 编写于 作者: A Ashish Kumar Singh 提交者: GitHub

Merge pull request #5521 from andreas-synnerdahl/issue-5471

Fix #5471 Corrected case of variable name 
......@@ -439,9 +439,9 @@ internal override PathGeometryData GetPathGeometryData()
else
{
ctx.BeginFigure(rect.TopLeft, true /* is filled */, true /* is closed */);
ctx.LineTo(Rect.TopRight, true /* is stroked */, false /* is smooth join */);
ctx.LineTo(Rect.BottomRight, true /* is stroked */, false /* is smooth join */);
ctx.LineTo(Rect.BottomLeft, true /* is stroked */, false /* is smooth join */);
ctx.LineTo(rect.TopRight, true /* is stroked */, false /* is smooth join */);
ctx.LineTo(rect.BottomRight, true /* is stroked */, false /* is smooth join */);
ctx.LineTo(rect.BottomLeft, true /* is stroked */, false /* is smooth join */);
}
ctx.Close();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册