diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | data/default-prefs.js | 3 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2004-08-20 Christian Persch <chpe@cvs.gnome.org> + + * data/default-prefs.js: + + Set default horizontal wheel action to 'scroll'. + Fixes bug #148557. + 2004-08-19 Marco Pesenti Gritti <marco@gnome.org> * embed/mozilla/Makefile.am: diff --git a/data/default-prefs.js b/data/default-prefs.js index 2517d6c88..49f1fa60c 100644 --- a/data/default-prefs.js +++ b/data/default-prefs.js @@ -2,6 +2,9 @@ pref("mousewheel.withcontrolkey.action", 1); pref("mousewheel.withcontrolkey.numlines", 1); pref("mousewheel.withcontrolkey.sysnumlines", false); +// fix horizontal scroll with 2nd wheel, see bug #148557 +pref("mousewheel.horizscroll.withnokey.action", 0); +pref("mousewheel.horizscroll.withnokey.sysnumlines", true); // don't allow opening file:/// URLs on pages from network sources (http, etc.) pref("security.checkloaduri", true); |