Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4573a8bc authored by Doris Ling's avatar Doris Ling
Browse files

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

Change-Id: Ic4f1b3d7c608f5e5501af91a746afea038fd9564
Fix: 36273830
Test: make RunSettingsRoboTests
parent d3505c76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);