Merge pull request #5955 from ByteHamster/default-vibrate

Disable sleep timer vibration by default
This commit is contained in:
ByteHamster 2022-07-09 19:07:05 +02:00 committed by GitHub
commit 7f5aba0c33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class SleepTimerPreferences {
}
public static boolean vibrate() {
return prefs.getBoolean(PREF_VIBRATE, true);
return prefs.getBoolean(PREF_VIBRATE, false);
}
public static void setShakeToReset(boolean shakeToReset) {