mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-20 21:27:07 +00:00
Default disable auto reply plain text only
This commit is contained in:
parent
5ab805d8d0
commit
6e70fb0c4a
3 changed files with 5 additions and 2 deletions
|
@ -672,6 +672,9 @@ public class ApplicationEx extends Application
|
|||
} else if (version < 2016) {
|
||||
if (!prefs.contains("reset_snooze"))
|
||||
editor.putBoolean("reset_snooze", false);
|
||||
} else if (version < 2029) {
|
||||
if (!prefs.contains("plain_only_reply"))
|
||||
editor.putBoolean("plain_only_reply", true);
|
||||
}
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)
|
||||
|
|
|
@ -4630,7 +4630,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean plain_only = prefs.getBoolean("plain_only", false);
|
||||
boolean plain_only_reply = prefs.getBoolean("plain_only_reply", true);
|
||||
boolean plain_only_reply = prefs.getBoolean("plain_only_reply", false);
|
||||
boolean resize_reply = prefs.getBoolean("resize_reply", true);
|
||||
boolean sign_default = prefs.getBoolean("sign_default", false);
|
||||
boolean encrypt_default = prefs.getBoolean("encrypt_default", false);
|
||||
|
|
|
@ -772,7 +772,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|||
swAttachNew.setChecked(prefs.getBoolean("attach_new", true));
|
||||
swAutoLink.setChecked(prefs.getBoolean("auto_link", false));
|
||||
swPlainOnly.setChecked(prefs.getBoolean("plain_only", false));
|
||||
swPlainOnlyReply.setChecked(prefs.getBoolean("plain_only_reply", true));
|
||||
swPlainOnlyReply.setChecked(prefs.getBoolean("plain_only_reply", false));
|
||||
swFormatFlowed.setChecked(prefs.getBoolean("format_flowed", false));
|
||||
swUsenetSignature.setChecked(prefs.getBoolean("usenet_signature", false));
|
||||
swRemoveSignatures.setChecked(prefs.getBoolean("remove_signatures", false));
|
||||
|
|
Loading…
Reference in a new issue