better quote

This commit is contained in:
Ashley Graves 2024-10-20 16:26:35 +02:00
parent 0a07c4e56b
commit 61d800048c
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -29,6 +29,8 @@ function wrapText(context, text, x, y, maxWidth, lineHeight, preparingSentence,
lines.push(preparingSentence.join(" "));
y -= (lines.length * lineHeight) / 2;
lines.forEach(element => {
const lineWidth = context.measureText(element).width;
const xOffset = (maxWidth - lineWidth) / 2;