From e3e360dbd836d84c40db1f9e6fd9a538c778da22 Mon Sep 17 00:00:00 2001 From: Ben Whittaker Date: Sat, 11 Dec 2021 13:44:40 -0500 Subject: [PATCH] vectorclock: add 2px margin --- apps/vectorclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vectorclock/app.js b/apps/vectorclock/app.js index 8259b82e4..7ac60f243 100644 --- a/apps/vectorclock/app.js +++ b/apps/vectorclock/app.js @@ -62,7 +62,7 @@ function draw() { let y = 24 + spacer; - pushCommand(drawVectorText, timeText, timeFontSize, 0, y, -1, -1); + pushCommand(drawVectorText, timeText, timeFontSize, 2, y, -1, -1); pushCommand(drawVectorText, meridian, timeFontSize*9/20, g.getWidth(), y, 1, -1); if (showSeconds) pushCommand(drawVectorText, secondsText, timeFontSize*9/20, g.getWidth(), y + timeHeight, 1, 1); y += timeHeight + spacer;