summaryrefslogtreecommitdiff
path: root/firefox-redhat-default-prefs.js
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2022-05-16 20:50:22 +0200
committerJan Horak <jhorak@redhat.com>2022-05-16 20:50:22 +0200
commit300248bcb6f3dc5126d45aeeef553547e5c22f20 (patch)
treea0930bdf168803f664f6f52d3129daaebe40b117 /firefox-redhat-default-prefs.js
parentRemoved already added patch: mozilla-1767916-multimonitor-crash.patch (diff)
downloadlibrewolf-fedora-ff-300248bcb6f3dc5126d45aeeef553547e5c22f20.tar.gz
librewolf-fedora-ff-300248bcb6f3dc5126d45aeeef553547e5c22f20.tar.bz2
librewolf-fedora-ff-300248bcb6f3dc5126d45aeeef553547e5c22f20.zip
Fix spellchecker.dictionary_path of F36+
Diffstat (limited to 'firefox-redhat-default-prefs.js')
-rw-r--r--firefox-redhat-default-prefs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox-redhat-default-prefs.js b/firefox-redhat-default-prefs.js
index 1c0be99..6fcee25 100644
--- a/firefox-redhat-default-prefs.js
+++ b/firefox-redhat-default-prefs.js
@@ -26,7 +26,7 @@ pref("plugins.notifyMissingFlash", false);
pref("browser.display.use_system_colors", false);
/* Allow sending credetials to all https:// sites */
pref("network.negotiate-auth.trusted-uris", "https://");
-pref("spellchecker.dictionary_path","/usr/share/myspell");
+pref("spellchecker.dictionary_path","/usr/share/hunspell");
/* Disable DoH by default */
pref("network.trr.mode", 5);
/* Enable per-user policy dir, see mozbz#1583466 */
bgstack15