From 711b497d1d245a7d7d953409f2371bb248b83d72 Mon Sep 17 00:00:00 2001 From: Harry Garrood Date: Wed, 3 Dec 2014 09:09:57 +0000 Subject: [PATCH] fix strokeText --- src/Graphics/Canvas.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Graphics/Canvas.purs b/src/Graphics/Canvas.purs index 421015e..fac7610 100644 --- a/src/Graphics/Canvas.purs +++ b/src/Graphics/Canvas.purs @@ -479,7 +479,7 @@ foreign import strokeText \ return function(x) {\ \ return function(y) {\ \ return function() {\ - \ ctx.fillText(text, x, y);\ + \ ctx.strokeText(text, x, y);\ \ return ctx;\ \ };\ \ };\