diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-21 01:54:57 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-21 01:54:57 +0800 |
commit | 405143b3a7979e258069663bb44644d1ac6a7739 (patch) | |
tree | 7e3629f17af7178990f2afb1e45c36d67ef7ec9e | |
parent | afa0ab2a07c9a185413db4adebd9d22d43824b68 (diff) | |
download | gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar.gz gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar.bz2 gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar.lz gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar.xz gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.tar.zst gsoc2013-epiphany-405143b3a7979e258069663bb44644d1ac6a7739.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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | data/default-prefs.js | 3 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,11 @@ +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-16 Christian Persch <chpe@cvs.gnome.org> * configure.in: diff --git a/data/default-prefs.js b/data/default-prefs.js index f16f6fbbb..07a5e79f5 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); |