This commit is contained in:
Dragon Fire
2021-04-24 11:55:19 -04:00
parent 5c82c42784
commit 6800f18f35
+1 -1
View File
@@ -110,7 +110,7 @@ module.exports = class AnalogClockCommand extends Command {
ctx.textBaseline = 'middle'; ctx.textBaseline = 'middle';
ctx.textAlign = 'center'; ctx.textAlign = 'center';
ctx.fillStyle = 'white'; 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; return ctx;
} }