mirror of
https://abf.rosa.ru/djam/firefox-esr68.git
synced 2025-02-25 02:42:59 +00:00
28 lines
963 B
Diff
28 lines
963 B
Diff
![]() |
# HG changeset patch
|
||
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
||
|
# Parent be9f4eae7dc69ed989cc9f9259b3bb73d1f5dbf9
|
||
|
Do not overwrite the locale dynamic pref from xulrunner's all.js with a wrong default value
|
||
|
|
||
|
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
|
||
|
--- a/browser/app/profile/firefox.js
|
||
|
+++ b/browser/app/profile/firefox.js
|
||
|
@@ -231,17 +231,17 @@ pref("xpinstall.whitelist.add.36", "getp
|
||
|
|
||
|
pref("lightweightThemes.update.enabled", true);
|
||
|
|
||
|
pref("keyword.enabled", true);
|
||
|
// Override the default keyword.URL. Empty value means
|
||
|
// "use the search service's default engine"
|
||
|
pref("keyword.URL", "");
|
||
|
|
||
|
-pref("general.useragent.locale", "@AB_CD@");
|
||
|
+pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
||
|
pref("general.skins.selectedSkin", "classic/1.0");
|
||
|
|
||
|
pref("general.smoothScroll", true);
|
||
|
#ifdef UNIX_BUT_NOT_MAC
|
||
|
pref("general.autoScroll", false);
|
||
|
#else
|
||
|
pref("general.autoScroll", true);
|
||
|
#endif
|