mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Explicitly disable force dark
This commit is contained in:
@@ -868,8 +868,8 @@ public class Helper {
|
||||
static boolean isNight(Context context) {
|
||||
// https://developer.android.com/guide/topics/ui/look-and-feel/darktheme#configuration_changes
|
||||
int uiMode = context.getResources().getConfiguration().uiMode;
|
||||
Log.i("UI mode=" + uiMode);
|
||||
return ((uiMode & Configuration.UI_MODE_NIGHT_MASK) == Configuration.UI_MODE_NIGHT_YES);
|
||||
Log.i("UI mode=" + Integer.toHexString(uiMode));
|
||||
return ((uiMode & Configuration.UI_MODE_NIGHT_YES) != 0);
|
||||
}
|
||||
|
||||
static boolean isDarkTheme(Context context) {
|
||||
|
||||
Reference in New Issue
Block a user