Don't invalidate theme if it hasn't changed
Change-Id: I0811218679409ac7e111aa7609736fc19de5236b
This commit is contained in:
parent
5e721d55f9
commit
1231e6b0aa
|
@ -91,8 +91,12 @@ object ThemeUtils {
|
|||
}
|
||||
|
||||
fun invalidateNightMode(context: Context) {
|
||||
mThemeInitialized = false;
|
||||
setApplicationTheme(context.applicationContext, getApplicationLightTheme(context), getApplicationDarkTheme(context))
|
||||
val lightTheme = getApplicationLightTheme(context)
|
||||
val darkTheme = getApplicationDarkTheme(context)
|
||||
if (lightTheme != darkTheme && darkThemePossible(context)) {
|
||||
mThemeInitialized = false;
|
||||
setApplicationTheme(context.applicationContext, getApplicationLightTheme(context), getApplicationDarkTheme(context))
|
||||
}
|
||||
}
|
||||
|
||||
// init the theme
|
||||
|
|
Loading…
Reference in New Issue