Merge "Change default value for vibrate on touch to 0 (off)."

This commit is contained in:
TreeHugger Robot
2017-03-25 17:54:48 +00:00
committed by Android (Google) Code Review

View File

@@ -32,7 +32,7 @@ public class VibrateOnTouchPreferenceController extends SettingPrefController {
Lifecycle lifecycle) {
super(context, parent, lifecycle);
mPreference = new SettingPref(
TYPE_SYSTEM, KEY_VIBRATE_ON_TOUCH, System.HAPTIC_FEEDBACK_ENABLED, DEFAULT_ON) {
TYPE_SYSTEM, KEY_VIBRATE_ON_TOUCH, System.HAPTIC_FEEDBACK_ENABLED, 0) {
@Override
public boolean isApplicable(Context context) {
return hasHaptic(context);