From ba24d42d448d678fc22bfa76c2eeb54d39dc8795 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Tue, 30 May 2017 23:04:36 +0100 Subject: [PATCH] fix property accessor --- src/ImageSharp.Drawing/Paths/DrawPath.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp.Drawing/Paths/DrawPath.cs b/src/ImageSharp.Drawing/Paths/DrawPath.cs index eb12a2606..1fba06370 100644 --- a/src/ImageSharp.Drawing/Paths/DrawPath.cs +++ b/src/ImageSharp.Drawing/Paths/DrawPath.cs @@ -28,7 +28,7 @@ namespace ImageSharp public static Image Draw(this Image source, IPen pen, IPath path, GraphicsOptions options) where TPixel : struct, IPixel { - return source.Fill(pen.StokeFill, new ShapePath(path, pen), options); + return source.Fill(pen.StrokeFill, new ShapePath(path, pen), options); } ///