mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-13 07:33:33 +00:00
Use proportial font by default
This commit is contained in:
parent
1d083275fd
commit
07bd30c843
4 changed files with 4 additions and 4 deletions
2
FAQ.md
2
FAQ.md
|
@ -249,7 +249,7 @@ In the display section of the advanced options you can enable or disable:
|
|||
* *Show stars*: to hide stars (favorites)
|
||||
* *Show message preview*: to show two lines of the message text
|
||||
* *Show address details by default*: to collapse the addresses section by default
|
||||
* *Use monospaced font for message text*: to change the typeface of the message text
|
||||
* *Use monospaced font for message text*: to use a fixed width typeface for message texts
|
||||
* *Conversation action bar*: to disable the bottom navigation bar
|
||||
* *Automatically show original message for known contacts*: to automatically show original messages for contacts on your device, please read [this FAQ](#user-content-faq35)
|
||||
* *Automatically show images for known contacts*: to automatically show images for contacts on your device, please read [this FAQ](#user-content-faq35)
|
||||
|
|
|
@ -2975,7 +2975,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
this.compact = compact;
|
||||
this.name_email = prefs.getBoolean("name_email", !compact);
|
||||
this.subject_italic = prefs.getBoolean("subject_italic", true);
|
||||
this.monospaced = prefs.getBoolean("monospaced", true);
|
||||
this.monospaced = prefs.getBoolean("monospaced", false);
|
||||
this.zoom = zoom;
|
||||
this.sort = sort;
|
||||
this.duplicates = duplicates;
|
||||
|
|
|
@ -189,7 +189,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
pro = Helper.isPro(getContext());
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
monospaced = prefs.getBoolean("monospaced", true);
|
||||
monospaced = prefs.getBoolean("monospaced", false);
|
||||
style = prefs.getBoolean("style_toolbar", true);
|
||||
}
|
||||
|
||||
|
|
|
@ -610,7 +610,7 @@ public class FragmentOptions extends FragmentBase implements SharedPreferences.O
|
|||
swFlags.setChecked(prefs.getBoolean("flags", true));
|
||||
swPreview.setChecked(prefs.getBoolean("preview", false));
|
||||
swAddresses.setChecked(prefs.getBoolean("addresses", true));
|
||||
swMonospaced.setChecked(prefs.getBoolean("monospaced", true));
|
||||
swMonospaced.setChecked(prefs.getBoolean("monospaced", false));
|
||||
swHtml.setChecked(prefs.getBoolean("autohtml", false));
|
||||
swTracking.setChecked(prefs.getBoolean("remove_tracking", true));
|
||||
swImages.setChecked(prefs.getBoolean("autoimages", false));
|
||||
|
|
Loading…
Add table
Reference in a new issue