1
0
Fork 0

berlinc - Do not cut off bounding box at the border

master
Martin Boonk 2023-01-14 23:22:36 +01:00
parent d46d0714e2
commit b986df4a05
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ let draw = () => {
time_digit[2] = Math.floor(now.getMinutes() / 10);
time_digit[3] = now.getMinutes() % 10;
g.drawRect(x, offset, x + width, height + offset);
g.drawRect(x, offset, x + width - 1, height + offset - 1);
for (row = 0; row < 4; row++) {
nfields = fields[row];
boxWidth = width / nfields;