From 6800f18f35ebd9aa74fc9bf0fc374e585e75d508 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 11:55:19 -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 8e9905c6..8c3ef6e0 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 - 50, ctx.canvas.height - 50); + ctx.fillText(meridiem, ctx.canvas.width - 100, ctx.canvas.height - 100); return ctx; }