From 6b283b23138f39e3f67da32997ba97f7114b6da6 Mon Sep 17 00:00:00 2001 From: mmcclaskey Date: Fri, 10 Sep 2021 13:41:03 -0400 Subject: [PATCH] Update display.js --- core/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/display.js b/core/display.js index a53eb0df..2e1eff83 100644 --- a/core/display.js +++ b/core/display.js @@ -464,7 +464,7 @@ export default class Display { if (factor === 1 && this._target.style.imageRendering !== 'pixelated') { this._target.style.imageRendering = 'pixelated'; - } else if (factor !== 1 && this._target.style.imageRendering !== 'high-quality') { + } else if (factor !== 1 && this._target.style.imageRendering !== 'auto') { this._target.style.imageRendering = 'auto'; } }