diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-09-24 13:51:29 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-09-24 13:59:46 -0400 |
commit | 535c8fbd101aab64e6fd7ba04a47fe290c00d32f (patch) | |
tree | 4da9b836212d843d2da64500c160a9b3489e114a /modules | |
parent | 7a3f45eb9d91531bce6ee7a660cd1402b93655b9 (diff) | |
download | aura-central-535c8fbd101aab64e6fd7ba04a47fe290c00d32f.tar.gz |
Issue mcp-graveyard/UXP%1231 - Stop using ICC profiles on Linux.
General consensus seems to be that color management on Linux desktops
is not mature enough to enable by default.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index e69a985ce..b64c157c5 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -732,12 +732,19 @@ pref("gfx.layerscope.port", 23456); // This should be use to quickly find which slow paths are used by test cases. pref("gfx.perf-warnings.enabled", false); -// 0 = Off, 1 = Full, 2 = Tagged Images Only. +// 0 = Off, 1 = All Images, 2 = Tagged Images Only. // See eCMSMode in gfx/thebes/gfxPlatform.h +#ifdef XP_WIN pref("gfx.color_management.mode", 2); pref("gfx.color_management.display_profile", ""); pref("gfx.color_management.rendering_intent", 0); pref("gfx.color_management.enablev4", true); +#else +pref("gfx.color_management.mode", 0); +pref("gfx.color_management.display_profile", ""); +pref("gfx.color_management.rendering_intent", 0); +pref("gfx.color_management.enablev4", false); +#endif pref("gfx.downloadable_fonts.enabled", true); pref("gfx.downloadable_fonts.fallback_delay", 3000); |