This commit is contained in:
Dragon Fire
2021-04-24 11:59:10 -04:00
parent 1cc15bc59f
commit c9a111415a
+1 -1
View File
@@ -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;
}