Configurable default answer action

This commit is contained in:
M66B
2022-02-15 20:05:02 +01:00
parent d939941864
commit e94e1ca408
5 changed files with 67 additions and 26 deletions

View File

@@ -577,6 +577,10 @@ public class ApplicationEx extends Application
} else if (version < 1837) {
if (!prefs.contains("compact_folders"))
editor.putBoolean("compact_folders", false);
} else if (version < 1839) {
boolean reply_all = prefs.getBoolean("reply_all", false);
if (reply_all)
editor.remove("reply_all").putString("answer_action", "reply_all");
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)