mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-04-03 04:51:14 +02:00
minor code style update
This commit is contained in:
parent
508216242b
commit
ba86e1e4cc
@ -65,29 +65,31 @@ class SetRemindersDialog(val activity: Activity, val eventType: Int, val callbac
|
|||||||
else -> false
|
else -> false
|
||||||
}
|
}
|
||||||
isAutomatic = isChecked
|
isAutomatic = isChecked
|
||||||
setOnCheckedChangeListener { _, isChecked -> isAutomatic = isChecked}
|
setOnCheckedChangeListener { _, isChecked -> isAutomatic = isChecked }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AlertDialog.Builder(activity)
|
AlertDialog.Builder(activity)
|
||||||
.setPositiveButton(R.string.ok) { dialog, which -> dialogConfirmed() }
|
.setPositiveButton(R.string.ok) { dialog, which -> dialogConfirmed() }
|
||||||
.setNegativeButton(R.string.cancel, null)
|
.setNegativeButton(R.string.cancel, null)
|
||||||
.create().apply {
|
.create().apply {
|
||||||
activity.setupDialogStuff(view, this, R.string.event_reminders)
|
activity.setupDialogStuff(view, this, R.string.event_reminders)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun dialogConfirmed() {
|
private fun dialogConfirmed() {
|
||||||
val tempReminders = arrayListOf(mReminder1Minutes, mReminder2Minutes, mReminder3Minutes).filter { it != REMINDER_OFF }.sorted()
|
val tempReminders = arrayListOf(mReminder1Minutes, mReminder2Minutes, mReminder3Minutes).filter { it != REMINDER_OFF }.sorted()
|
||||||
val reminders = arrayListOf(
|
val reminders = arrayListOf(
|
||||||
tempReminders.getOrNull(0) ?: REMINDER_OFF,
|
tempReminders.getOrNull(0) ?: REMINDER_OFF,
|
||||||
tempReminders.getOrNull(1) ?: REMINDER_OFF,
|
tempReminders.getOrNull(1) ?: REMINDER_OFF,
|
||||||
tempReminders.getOrNull(2) ?: REMINDER_OFF
|
tempReminders.getOrNull(2) ?: REMINDER_OFF
|
||||||
)
|
)
|
||||||
|
|
||||||
if (eventType == BIRTHDAY_EVENT) {
|
if (eventType == BIRTHDAY_EVENT) {
|
||||||
activity.config.addBirthdaysAutomatically = isAutomatic
|
activity.config.addBirthdaysAutomatically = isAutomatic
|
||||||
activity.config.birthdayReminders = reminders
|
activity.config.birthdayReminders = reminders
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventType == ANNIVERSARY_EVENT) {
|
if (eventType == ANNIVERSARY_EVENT) {
|
||||||
activity.config.addAnniversariesAutomatically = isAutomatic
|
activity.config.addAnniversariesAutomatically = isAutomatic
|
||||||
activity.config.anniversaryReminders = reminders
|
activity.config.anniversaryReminders = reminders
|
||||||
|
Loading…
x
Reference in New Issue
Block a user