From a868e309f373980baf506808725a7905221e1275 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 21 Apr 2020 11:15:05 -0400 Subject: [PATCH] Fix --- commands/edit-meme/lisa-presentation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/lisa-presentation.js b/commands/edit-meme/lisa-presentation.js index ce719479..59053f74 100644 --- a/commands/edit-meme/lisa-presentation.js +++ b/commands/edit-meme/lisa-presentation.js @@ -58,7 +58,7 @@ module.exports = class LisaPresentationCommand extends Command { ctx.font = `${fontSize}px Noto`; } const lines = await wrapText(ctx, text, 330); - const topMost = 325 - (((fontSize * lines.length) / 2) + ((20 * (lines.length - 1)) / 2)); + const topMost = 185 - (((fontSize * lines.length) / 2) + ((20 * (lines.length - 1)) / 2)); for (let i = 0; i < lines.length; i++) { const height = topMost + ((fontSize + 20) * i); ctx.fillText(lines[i], base.width / 2, height);