Revert "Added option for default answer action"

This reverts commit 8a7c3e742d.
This commit is contained in:
M66B
2023-01-19 11:52:05 +01:00
parent 8a7c3e742d
commit 507e62f5ec
4 changed files with 3 additions and 31 deletions

View File

@@ -3356,12 +3356,8 @@ public class FragmentMessages extends FragmentBase
if (message == null)
return;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
boolean answer_default = prefs.getBoolean("answer_default", false);
if (answer_default)
long_press = !long_press;
if (long_press && message.content) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
String answer_action = prefs.getString("answer_action", "reply");
if ("reply".equals(answer_action) ||
"reply_all".equals(answer_action) ||