diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/index.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/index.js b/app/index.js index 5f21478..cbde03f 100644 --- a/app/index.js +++ b/app/index.js @@ -109,9 +109,7 @@ function setHours(val) { drawNumeral(Math.floor(val / 10), hours1); } else { drawNumeral(0, hours1); - if (preferences.clockDisplay === "12h") { - hours1.style.opacity = 0.2; - } + hours1.style.opacity = 0.2; } drawNumeral(Math.floor(val % 10), hours2); } |