diff options
Diffstat (limited to 'modules/libpref/init/all.js')
-rw-r--r-- | modules/libpref/init/all.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 05699f946..973edf6a5 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -117,6 +117,9 @@ pref("browser.cache.compression_level", 0); // Don't show "Open with" option on download dialog if true. pref("browser.download.forbid_open_with", false); +// Save download locations as a content preference +pref("browser.download.lastDir.savePerSite", true); + #ifdef XP_WIN // Save internet zone information on downloaded files: // 0 => Never @@ -2212,9 +2215,10 @@ pref("ui.key.contentAccess", 5); pref("ui.key.menuAccessKeyFocuses", false); // overridden below pref("ui.key.saveLink.shift", true); // true = shift, false = meta -// When true, overrides OS convention to lock content scrolling +// When true, overrides Windows OS convention to lock content scrolling // if a contextual menu is open. -pref("ui.menu.allow_content_scroll", false); +// XXX: Only effective on Windows for now! +pref("ui.menu.allow_content_scroll", true); // Disable page loading activity cursor by default. pref("ui.use_activity_cursor", false); @@ -5398,6 +5402,9 @@ pref("plugins.navigator_hide_disabled_flash", false); // Disable browser frames by default pref("dom.mozBrowserFramesEnabled", false); +// Thick caret when behind CJK characters +pref("layout.cjkthickcaret", true); + // Is support for 'color-adjust' CSS property enabled? pref("layout.css.color-adjust.enabled", true); |