Bug 1339831 - Disable scrollbar-dragging in Fennec. r?botond draft
authorKartikaya Gupta <kgupta@mozilla.com>
Wed, 15 Feb 2017 10:51:22 -0500
changeset 484631 df6a7392e7f15c130160e4de9771e2cc55e494e1
parent 484630 2161d0c6826a4747c39f931798876b4a93fa3a57
child 545831 55589ed644f36042edf29a7030bd234ac6d65dce
push id45527
push userkgupta@mozilla.com
push dateWed, 15 Feb 2017 15:52:07 +0000
reviewersbotond
bugs1339831
milestone54.0a1
Bug 1339831 - Disable scrollbar-dragging in Fennec. r?botond MozReview-Commit-ID: BCm9dMr1Zdu
mobile/android/app/mobile.js
--- a/mobile/android/app/mobile.js
+++ b/mobile/android/app/mobile.js
@@ -556,16 +556,17 @@ pref("layers.acceleration.disabled", fal
 pref("layers.async-video.enabled", true);
 
 // APZ physics settings (fling acceleration, fling curving and axis lock) have
 // been reviewed by UX
 pref("apz.allow_immediate_handoff", false);
 pref("apz.axis_lock.breakout_angle", "0.7853982");    // PI / 4 (45 degrees)
 pref("apz.axis_lock.mode", 1); // Use "strict" axis locking
 pref("apz.content_response_timeout", 600);
+pref("apz.drag.enabled", false);
 pref("apz.fling_accel_interval_ms", 750);
 pref("apz.fling_curve_function_x1", "0.59");
 pref("apz.fling_curve_function_y1", "0.46");
 pref("apz.fling_curve_function_x2", "0.05");
 pref("apz.fling_curve_function_y2", "1.00");
 pref("apz.fling_curve_threshold_inches_per_ms", "0.01");
 // apz.fling_friction and apz.fling_stopped_threshold are currently ignored by Fennec.
 pref("apz.fling_friction", "0.004");