diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-21 01:53:47 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-21 01:53:47 +0800 |
commit | df782ccc4eb34aae382c2808d5d2752b85142c5e (patch) | |
tree | b57f9859a5409b1e870da67ca413645b9a7ee098 /data | |
parent | be4b2d3b67e28426f5b073b5d5a31d0fc3a1eda1 (diff) | |
download | gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar.gz gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar.bz2 gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar.lz gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar.xz gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.tar.zst gsoc2013-epiphany-df782ccc4eb34aae382c2808d5d2752b85142c5e.zip |
Set default horizontal wheel action to 'scroll'. Fixes bug #148557.
2004-08-20 Christian Persch <chpe@cvs.gnome.org>
* data/default-prefs.js:
Set default horizontal wheel action to 'scroll'.
Fixes bug #148557.
Diffstat (limited to 'data')
-rw-r--r-- | data/default-prefs.js | 3 |
1 files changed, 3 insertions, 0 deletions
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); |