summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-10-06 17:46:21 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-10-06 17:46:21 +0200
commit866ea8dfa55f531fa7951f41db881c51ad6f143d (patch)
treecb32470f17a5dcaacf04d8cf6141828287376a35 /modules
parent8860eddcee1417483cafd114f3a9ec127e0f1f74 (diff)
downloadUXP-866ea8dfa55f531fa7951f41db881c51ad6f143d.tar
UXP-866ea8dfa55f531fa7951f41db881c51ad6f143d.tar.gz
UXP-866ea8dfa55f531fa7951f41db881c51ad6f143d.tar.lz
UXP-866ea8dfa55f531fa7951f41db881c51ad6f143d.tar.xz
UXP-866ea8dfa55f531fa7951f41db881c51ad6f143d.zip
Set the default action to not lock content scrolling when a menu is open.
This resolves issues with the bookmarks and other menus with submenus if scrollable in case of many items displayed.
Diffstat (limited to 'modules')
-rw-r--r--modules/libpref/init/all.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index 05699f946..ab9560fba 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -2212,9 +2212,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);