From 2bdb76cecd5eb03643318887eca8896fe2637c4d Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 7 Apr 2019 16:42:00 +0000 Subject: [PATCH] fix --- commands/image-edit/lisa-presentation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/image-edit/lisa-presentation.js b/commands/image-edit/lisa-presentation.js index f6957a82..18af7efc 100644 --- a/commands/image-edit/lisa-presentation.js +++ b/commands/image-edit/lisa-presentation.js @@ -38,7 +38,7 @@ module.exports = class LisaPresentationCommand extends Command { ctx.textAlign = 'center'; ctx.font = '40px Noto'; let fontSize = 40; - while (ctx.measureText(text).width > 990) { + while (ctx.measureText(text).width > 1320) { fontSize -= 1; ctx.font = `${fontSize}px Noto`; }