1.1.1 Fix bug with stroke cricle.

This commit is contained in:
treeform 2021-03-15 08:05:47 -07:00
parent d7330c7eb3
commit 4aa1afc0c2
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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,