Skip to content

Commit db1e20e

Browse files
committed
change the default reminder audio stream from Alarm to Notification
1 parent 79f5454 commit db1e20e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers

app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class Config(context: Context) : BaseConfig(context) {
115115
set(lastUsedLocalEventTypeId) = prefs.edit().putLong(LAST_USED_LOCAL_EVENT_TYPE_ID, lastUsedLocalEventTypeId).apply()
116116

117117
var reminderAudioStream: Int
118-
get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_ALARM)
118+
get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_NOTIFICATION)
119119
set(reminderAudioStream) = prefs.edit().putInt(REMINDER_AUDIO_STREAM, reminderAudioStream).apply()
120120

121121
var replaceDescription: Boolean

0 commit comments

Comments
 (0)