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'; } }