mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-14 21:13:37 +02:00
Added option long press reply/all
This commit is contained in:
@@ -2535,9 +2535,11 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
||||
if (message == null)
|
||||
return;
|
||||
|
||||
if (sender && message.content)
|
||||
onMenuReply(message, "reply", selected);
|
||||
else
|
||||
if (sender && message.content) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
boolean reply_all = prefs.getBoolean("reply_all", false);
|
||||
onMenuReply(message, reply_all ? "reply_all" : "reply", selected);
|
||||
} else
|
||||
onReply(message, selected, fabReply);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user