From 20c2451b182a6897aa3782f21f67b4333bbc3abd Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Wed, 29 Sep 2010 11:29:57 -0700 Subject: [PATCH] Typo --- src/context2d.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context2d.cc b/src/context2d.cc index b20d5f9..fea83bf 100644 --- a/src/context2d.cc +++ b/src/context2d.cc @@ -141,7 +141,7 @@ Context2d::SetStrokeRGBA(const Arguments &args) { HandleScope scope; RGBA_ARGS; Context2d *context = ObjectWrap::Unwrap(args.This()); - RGBA(context->fill,r,g,b,a); + RGBA(context->stroke,r,g,b,a); return Undefined(); }