0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00

Follow beep settings for error beeps too

This commit is contained in:
KamaleiZestri 2023-02-06 03:18:52 -06:00 committed by GitHub
parent a489f3aa22
commit 3d923035e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ fun Context.errorFeedback() {
if (prefs.vibrate) {
getVibrator().error()
}
if (!isSilent()) {
if (prefs.beep && !isSilent()) {
beepError()
}
}