mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 21:24:34 +00:00
Default disable last sync time / nav menu for small screens
This commit is contained in:
parent
54594c031c
commit
2a9c81417d
1 changed files with 4 additions and 1 deletions
|
@ -402,8 +402,11 @@ public class ActivityMain extends ActivityBase implements FragmentManager.OnBack
|
|||
}
|
||||
|
||||
// Default disable landscape columns for small screens
|
||||
if (!config.isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_NORMAL))
|
||||
// Disable last sync time / nav menu for small screens
|
||||
if (!config.isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_NORMAL)) {
|
||||
editor.putBoolean("landscape", false);
|
||||
editor.putBoolean("nav_last_sync", false);
|
||||
}
|
||||
editor.putBoolean("landscape3", false);
|
||||
|
||||
// Default send bubbles off when accessibility enabled
|
||||
|
|
Loading…
Reference in a new issue