Reply to recipient

This commit is contained in:
M66B 2022-06-19 10:50:40 +02:00
parent 983ee91a73
commit e21767f3dc
2 changed files with 9 additions and 5 deletions

View File

@ -3150,10 +3150,10 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
if (context == null)
return;
final Address[] to =
message.replySelf(data.identities, message.account)
? message.to
: (message.reply == null || message.reply.length == 0 ? message.from : message.reply);
boolean replySelf = message.replySelf(data.identities, message.account);
final Address[] to = replySelf
? message.to
: (message.reply == null || message.reply.length == 0 ? message.from : message.reply);
Address[] recipients = message.getAllRecipients(data.identities, message.account);
@ -3199,7 +3199,10 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
popupMenu.getMenu().findItem(R.id.menu_resend).setEnabled(canResend);
popupMenu.getMenu().findItem(R.id.menu_reply_answer).setVisible(answers != 0 || !ActivityBilling.isPro(context));
popupMenu.getMenu().findItem(R.id.menu_reply_to_sender).setEnabled(message.content);
popupMenu.getMenu().findItem(R.id.menu_reply_to_sender)
.setTitle(getString(replySelf ? R.string.title_reply_to_recipient : R.string.title_reply_to_sender))
.setEnabled(message.content);
popupMenu.getMenu().findItem(R.id.menu_reply_to_all).setEnabled(message.content);
popupMenu.getMenu().findItem(R.id.menu_forward).setEnabled(message.content);
popupMenu.getMenu().findItem(R.id.menu_forward_raw)

View File

@ -1245,6 +1245,7 @@
<string name="title_archive">Archive</string>
<string name="title_reply">Reply</string>
<string name="title_reply_to_sender">Reply to sender</string>
<string name="title_reply_to_recipient">Reply to recipient</string>
<string name="title_reply_to_all">Reply to all</string>
<string name="title_reply_list">Reply to list</string>
<string name="title_reply_receipt">Send read receipt</string>