From c9a111415afdb144a32fa8f5a805de9542917b4e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 11:59:10 -0400 Subject: [PATCH] Fix --- commands/edit-image/analog-clock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/analog-clock.js b/commands/edit-image/analog-clock.js index ae6c932a..55578c81 100644 --- a/commands/edit-image/analog-clock.js +++ b/commands/edit-image/analog-clock.js @@ -110,7 +110,7 @@ module.exports = class AnalogClockCommand extends Command { ctx.textBaseline = 'middle'; ctx.textAlign = 'center'; ctx.fillStyle = 'white'; - ctx.fillText(meridiem, ctx.canvas.width - 75, ctx.canvas.height - 75); + ctx.fillText(meridiem, ctx.canvas.width - 100, ctx.canvas.height - 75); return ctx; }