minor code style update

This commit is contained in:
Tibor Kaputa 2021-11-21 18:28:11 +01:00 committed by GitHub
parent 508216242b
commit ba86e1e4cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ 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 }
} }
} }
@ -84,10 +84,12 @@ class SetRemindersDialog(val activity: Activity, val eventType: Int, val callbac
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