From 1cc15bc59f3970b33539bb237907d2a2103a1f1c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 11:58:46 -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 826307d9..ae6c932a 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 - 100, ctx.canvas.height - 100); + ctx.fillText(meridiem, ctx.canvas.width - 75, ctx.canvas.height - 75); return ctx; }