Skip to content

Commit

Permalink
Move line
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Nov 19, 2024
1 parent b9be699 commit de78668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/client/core/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,9 @@ export function readFileOrBlobAsDataURL(fileOrBlob) {
}

export function colorizeImage(inputImage, color) {
const canvas = document.createElement("canvas");
const w = inputImage.naturalWidth;
const h = inputImage.naturalHeight;
const canvas = document.createElement("canvas");
canvas.width = w;
canvas.height = h;
const context = canvas.getContext("2d");
Expand Down

0 comments on commit de78668

Please sign in to comment.