Skip to content

Commit 43cc6b0

Browse files
committed
Merge pull request #11 from hdgarrood/fix-stroke-text
fix strokeText
2 parents 411e8d8 + 711b497 commit 43cc6b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Graphics/Canvas.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ foreign import strokeText
496496
\ return function(x) {\
497497
\ return function(y) {\
498498
\ return function() {\
499-
\ ctx.fillText(text, x, y);\
499+
\ ctx.strokeText(text, x, y);\
500500
\ return ctx;\
501501
\ };\
502502
\ };\

0 commit comments

Comments
 (0)