mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-31 03:17:13 +01:00
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…
x
Reference in New Issue
Block a user