forked from FOSS/BangleApps
berlinc - Do not cut off bounding box at the border
parent
d46d0714e2
commit
b986df4a05
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue