Keep original style w.r.t colors.

master
David Peer 2022-02-19 09:39:26 +01:00
parent a476be9786
commit d74103273e
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ function drawClock(num){
const current = ((y + 1) * 2 + x - 1);
let newScale = scale;
let xc = settings.showLock && Bangle.isLocked() ? Math.abs(x-1) : x;
let xc = settings.showLock && !Bangle.isLocked() ? Math.abs(x-1) : x;
let c = colors[settings.io ? 'io' : 'x'][y][xc];
g.setColor(c);