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

Commit 73a56fe4 authored by Eric Laurent's avatar Eric Laurent
Browse files

Revert "Change condition to enter silent mode."

This reverts commit c11c3ae4.
parent cf508bd5
Loading
Loading
Loading
Loading
+8 −11
Original line number Diff line number Diff line
@@ -1557,17 +1557,14 @@ public class AudioService extends IAudioService.Stub {
        int newRingerMode = mRingerMode;

        if (mRingerMode == AudioManager.RINGER_MODE_NORMAL) {
            if ((direction == AudioManager.ADJUST_LOWER) && ((oldIndex + 5) / 10 <= 1)) {
                // enter silent mode if current index is the last audible one and not repeating a
                // volume key down
                if (mPrevVolDirection != AudioManager.ADJUST_LOWER) {
            // audible mode, at the bottom of the scale
            if ((direction == AudioManager.ADJUST_LOWER &&
                 mPrevVolDirection != AudioManager.ADJUST_LOWER) &&
                ((oldIndex + 5) / 10 == 0)) {
                // "silent mode", but which one?
                newRingerMode = System.getInt(mContentResolver, System.VIBRATE_IN_SILENT, 1) == 1
                    ? AudioManager.RINGER_MODE_VIBRATE
                    : AudioManager.RINGER_MODE_SILENT;
                } else {
                    adjustVolumeIndex = false;
                }
            }
        } else {
            if (direction == AudioManager.ADJUST_RAISE) {