summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2017-11-01 02:41:03 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-03-13 16:39:42 +0100
commit81de6dd3d938f17c0d633e6a96f82fdfca16f16f (patch)
treebf9f48c972b80103e310ae3715c4f87d6edb4db2 /toolkit
parent04899ffedfbceffe265e6f6bb0e270581d6c2393 (diff)
downloaduxp-81de6dd3d938f17c0d633e6a96f82fdfca16f16f.tar.gz
Bump max icon size for search engine icons to 32 KB to cater to more common use of HiDPI icons.
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/components/search/nsSearchService.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/components/search/nsSearchService.js b/toolkit/components/search/nsSearchService.js
index 8abe56d2fc..fb3f69f4c6 100644
--- a/toolkit/components/search/nsSearchService.js
+++ b/toolkit/components/search/nsSearchService.js
@@ -107,7 +107,7 @@ const NEW_LINES = /(\r\n|\r|\n)/;
// Set an arbitrary cap on the maximum icon size. Without this, large icons can
// cause big delays when loading them at startup.
-const MAX_ICON_SIZE = 10000;
+const MAX_ICON_SIZE = 32768;
// Default charset to use for sending search parameters. ISO-8859-1 is used to
// match previous nsInternetSearchService behavior.