mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
Issue #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.
This commit is contained in:
parent
c93a31b725
commit
c6714e1279
1 changed files with 8 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue