diff options
Diffstat (limited to 'ext/js/app/theme-controller.js')
| -rw-r--r-- | ext/js/app/theme-controller.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/ext/js/app/theme-controller.js b/ext/js/app/theme-controller.js index 559a6e57..384fbcc8 100644 --- a/ext/js/app/theme-controller.js +++ b/ext/js/app/theme-controller.js @@ -190,9 +190,9 @@ export class ThemeController {          if (color === null) { return; }          const a = color[3]; -        if (a <= 0.0) { return; } +        if (a <= 0) { return; } -        const aInv = 1.0 - a; +        const aInv = 1 - a;          for (let i = 0; i < 3; ++i) {              target[i] = target[i] * aInv + color[i] * a;          } @@ -212,7 +212,7 @@ export class ThemeController {              Number.parseInt(m[1], 10),              Number.parseInt(m[2], 10),              Number.parseInt(m[3], 10), -            m4 ? Math.max(0.0, Math.min(1.0, Number.parseFloat(m4))) : 1.0 +            m4 ? Math.max(0, Math.min(1, Number.parseFloat(m4))) : 1          ];      }  } |