Adjust mouse wheel delta multiplier for improved scrolling sensitivity

This commit is contained in:
mr. M
2024-12-20 23:56:53 +01:00
parent 16d32c073d
commit 431de0dc25

View File

@@ -239,7 +239,7 @@ pref('browser.migrate.opera.enabled', true);
// pref('network.trr.mode', 5); // pref('network.trr.mode', 5);
// security: They must enable this themselves, to avoid people downloading malware // security: They must enable this themselves, to avoid people downloading malware
//pref('xpinstall.signatures.required', false); pref('xpinstall.signatures.required', false);
// Experimental Zen Features // Experimental Zen Features
// Strategy to use for bytecode cache (Thanks https://github.com/gunir) // Strategy to use for bytecode cache (Thanks https://github.com/gunir)
@@ -296,7 +296,7 @@ pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650); pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250); pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
pref("mousewheel.default.delta_multiplier_y", 300); pref("mousewheel.default.delta_multiplier_y", 200);
#endif #endif
#if defined(XP_WIN) #if defined(XP_WIN)
@@ -346,7 +346,7 @@ pref("media.hardware-video-decoding.enabled", true);
pref("layers.gpu-process.enabled", true); pref("layers.gpu-process.enabled", true);
// VAAPI/FFMPEG is Linux only // VAAPI/FFMPEG is Linux only
#ifdef XP_UNIX #ifdef UNIX_BUT_NOT_MAC
pref('media.ffmpeg.vaapi.enabled', true); pref('media.ffmpeg.vaapi.enabled', true);
pref('media.ffmpeg.encoder.enabled', true); pref('media.ffmpeg.encoder.enabled', true);
#endif #endif