[Webkit-unassigned] [Bug 36226] [Qt] canvas arc element doesn't render correctly

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 8 12:24:18 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=36226





--- Comment #3 from lonhutt at gmail.com  2010-04-08 12:24:18 PST ---
I changed:

ctx.beginPath();
ctx.lineWidth = 8;
ctx.strokeStyle = "#33CCCC";
ctx.arc(342, 212, 56.25714285714286, 6.997183637540902, 7.5683823018299545,
false);
ctx.stroke();
ctx.closePath();

to:

ctx.beginPath();
ctx.moveTo(342, 212);
ctx.lineWidth = 8;
ctx.strokeStyle = "#33CCCC";
ctx.arc(342, 212, 56.25714285714286, 6.997183637540902, 7.5683823018299545,
false);
ctx.stroke();
ctx.closePath();

with no results. What am I doing wrong?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list