diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index 8d0092329..8b2f48c50 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -301,7 +301,7 @@ define([ if (callback) { this.spriteThumbs = new Image(); this.spriteThumbs.onload = callback; - this.spriteThumbs.src = (window.devicePixelRatio > 1) ? thumbPath2x : thumbPath; + this.spriteThumbs.src = isRetina ? thumbPath2x : thumbPath; } },