diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-12-18 16:10:58 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-12 15:56:16 +0100 |
commit | 1201510514c4c0a556359e893912f8a90f8c6adb (patch) | |
tree | f9f5679dce07e4a16fcc34a2cd9b74d6610a0d96 /modules | |
parent | 4686be40b280142bb372d16e91b60e96e4c3bd34 (diff) | |
download | uxp-1201510514c4c0a556359e893912f8a90f8c6adb.tar.gz |
Use more logical pref names for mouse button 4&5
Also improves comment wording.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index d91ac0c8bd..da610f47de 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2227,11 +2227,12 @@ pref("clipboard.autocopy", false); pref("clipboard.plainTextOnly", false); #ifdef XP_WIN -// Setting false you can disable 4th button and/or 5th button of your mouse. -// 4th button is typically mapped to "Back" and 5th button is typically mapped -// to "Forward" button. -pref("mousebutton.4th.enabled", true); -pref("mousebutton.5th.enabled", true); +// Mouse 4th/5th button handling +// Setting these to false allows you to disable the 4th and/or 5th button of +// your mouse. The 4th button is typically mapped to "Back" and the 5th +// button is typically mapped to "Forward". +pref("mouse.button4.enabled", true); +pref("mouse.button5.enabled", true); #endif // mouse wheel scroll transaction period of time (in milliseconds) |