Fix alert font size

This commit is contained in:
Dragon Fire
2020-05-22 09:44:12 -04:00
parent 525990bfb3
commit 448d7b80c2
+1 -1
View File
@@ -53,7 +53,7 @@ module.exports = class AlertCommand extends Command {
const canvas = createCanvas(base.width, base.height);
const ctx = canvas.getContext('2d');
ctx.drawImage(base, 0, 0);
ctx.font = '28px SF Pro';
ctx.font = '30px SF Pro';
ctx.fillStyle = '#1f1f1f';
ctx.textBaseline = 'top';
let text = await wrapText(ctx, message, 540);