diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-06 09:34:25 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:38:41 +0200 |
commit | dbeceecde2ac036d12aece182a3a12ee67be7175 (patch) | |
tree | 247838e6b3d86fc8bbe0bad1115fad2fcbbd17e6 /toolkit/components/thumbnails/PageThumbUtils.jsm | |
parent | 9fc28c55c34dabe42dcdbfccc5fc19d566b7e0b4 (diff) | |
download | UXP-dbeceecde2ac036d12aece182a3a12ee67be7175.tar UXP-dbeceecde2ac036d12aece182a3a12ee67be7175.tar.gz UXP-dbeceecde2ac036d12aece182a3a12ee67be7175.tar.lz UXP-dbeceecde2ac036d12aece182a3a12ee67be7175.tar.xz UXP-dbeceecde2ac036d12aece182a3a12ee67be7175.zip |
Issue #65 - Remove AppConstants from toolkit/components/thumbnails
Diffstat (limited to 'toolkit/components/thumbnails/PageThumbUtils.jsm')
-rw-r--r-- | toolkit/components/thumbnails/PageThumbUtils.jsm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolkit/components/thumbnails/PageThumbUtils.jsm b/toolkit/components/thumbnails/PageThumbUtils.jsm index dda3a81b3..fb5d67ddb 100644 --- a/toolkit/components/thumbnails/PageThumbUtils.jsm +++ b/toolkit/components/thumbnails/PageThumbUtils.jsm @@ -14,7 +14,6 @@ const { classes: Cc, interfaces: Ci, utils: Cu } = Components; Cu.import("resource://gre/modules/XPCOMUtils.jsm", this); Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/Promise.jsm", this); -Cu.import("resource://gre/modules/AppConstants.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "BrowserUtils", "resource://gre/modules/BrowserUtils.jsm"); @@ -72,15 +71,17 @@ this.PageThumbUtils = { let windowScale = aWindow ? aWindow.devicePixelRatio : systemScale; let scale = Math.max(systemScale, windowScale); +#ifdef XP_MACOSX /** * * On retina displays, we can sometimes go down this path * without a window object. In those cases, force 2x scaling * as the system scale doesn't represent the 2x scaling * on OS X. */ - if (AppConstants.platform == "macosx" && !aWindow) { + if (!aWindow) { scale = 2; } +#endif /** * * THESE VALUES ARE DEFINED IN newtab.css and hard coded. |