We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b9bda7 commit 5ce3f8aCopy full SHA for 5ce3f8a
tests/notehead_tests.ts
@@ -34,11 +34,10 @@ const NoteHeadTests = {
34
};
35
36
function setContextStyle(ctx: RenderContext): void {
37
- // TODO: scale() method in SVGContext and CanvasContext should work similarly!
38
// The final scale should be 1.8.
39
- // ctx.scale(0.9, 0.9);
40
- // ctx.scale(2.0, 2.0);
41
- ctx.scale(1.8, 1.8);
+ ctx.scale(0.9, 0.9);
+ ctx.scale(2.0, 2.0);
+ //ctx.scale(1.8, 1.8);
42
43
ctx.font = '10pt Arial';
44
}
0 commit comments