From d74103273ef30ebc3a0370a8673cbbcb4d8051b6 Mon Sep 17 00:00:00 2001 From: David Peer Date: Sat, 19 Feb 2022 09:39:26 +0100 Subject: [PATCH] Keep original style w.r.t colors. --- apps/neonx/neonx.app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/neonx/neonx.app.js b/apps/neonx/neonx.app.js index d64e08d78..a90d5c609 100644 --- a/apps/neonx/neonx.app.js +++ b/apps/neonx/neonx.app.js @@ -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);