From 4aa1afc0c2c7287b50dae638760082e367cb826b Mon Sep 17 00:00:00 2001 From: treeform Date: Mon, 15 Mar 2021 08:05:47 -0700 Subject: [PATCH] 1.1.1 Fix bug with stroke cricle. --- pixie.nimble | 2 +- src/pixie.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pixie.nimble b/pixie.nimble index bb90d1a..74909df 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -1,4 +1,4 @@ -version = "1.1.0" +version = "1.1.1" author = "Andre von Houck and Ryan Oldenburg" description = "Full-featured 2d graphics library for Nim." license = "MIT" diff --git a/src/pixie.nim b/src/pixie.nim index 6f13f34..fbdc2e9 100644 --- a/src/pixie.nim +++ b/src/pixie.nim @@ -258,7 +258,7 @@ proc strokeCircle*( ## Strokes a circle. var path: Path path.ellipse(center, radius, radius) - image.fillPath(path, color) + image.strokePath(path, color, strokeWidth) proc strokeCircle*( mask: Mask,