1
0
Fork 0

For #2721 - Reorder onboarding theme settings (#2817)

master
Emily Kager 2019-05-23 23:34:11 -07:00 committed by Jeff Boek
parent f76437f60c
commit 0c8ad3ef6e
1 changed files with 2 additions and 2 deletions

View File

@ -74,9 +74,9 @@ class OnboardingThemePickerViewHolder(private val view: View) : RecyclerView.Vie
with(Settings.getInstance(view.context)) {
when {
this.shouldFollowDeviceTheme -> radioFollowDeviceTheme.isChecked = true
this.shouldUseLightTheme -> radioLightTheme.isChecked = true
else -> radioDarkTheme.isChecked = true
this.shouldUseDarkTheme -> radioDarkTheme.isChecked = true
else -> radioFollowDeviceTheme.isChecked = true
}
}
}