diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-12-06 22:23:58 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-12-06 22:23:58 +0100 |
commit | 3411dd5723fdcd7d2b5a8b08a9c2b6bea310b3c3 (patch) | |
tree | fc9e3a553cb97faa2941b46a6d614ce2cc418e1b /application/palemoon/app/profile | |
parent | 93705a7d00b2b09ee9b5d036b71c5be79b8d10a1 (diff) | |
download | uxp-3411dd5723fdcd7d2b5a8b08a9c2b6bea310b3c3.tar.gz |
Add an option to process favicons.
This optimizes the size for UI display and strips animations.
Default disabled. This resolves #899.
Diffstat (limited to 'application/palemoon/app/profile')
-rw-r--r-- | application/palemoon/app/profile/palemoon.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 907ac1fbf0..1c6016f0fb 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -264,6 +264,9 @@ pref("browser.slowStartup.maxSamples", 5); pref("browser.enable_automatic_image_resizing", true); pref("browser.chrome.site_icons", true); pref("browser.chrome.favicons", true); +// If enabled, will process favicons by drawing them on a canvas, +// optimizing display size for the UI. This also strips animations. +pref("browser.chrome.favicons.process", false); // browser.warnOnQuit == false will override all other possible prompts when quitting or restarting pref("browser.warnOnQuit", true); // browser.showQuitWarning specifically controls the quit warning dialog. We |