Don't finish() MessageList when forwarding or replying to a message

This commit is contained in:
cketti 2013-03-04 21:19:08 +01:00
parent 78dc5e5194
commit 41244ef448
1 changed files with 0 additions and 3 deletions

View File

@ -1344,19 +1344,16 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
@Override
public void onReply(Message message, PgpData pgpData) {
MessageCompose.actionReply(this, mAccount, message, false, pgpData.getDecryptedData());
finish();
}
@Override
public void onReplyAll(Message message, PgpData pgpData) {
MessageCompose.actionReply(this, mAccount, message, true, pgpData.getDecryptedData());
finish();
}
@Override
public void onForward(Message mMessage, PgpData mPgpData) {
MessageCompose.actionForward(this, mAccount, mMessage, mPgpData.getDecryptedData());
finish();
}
@Override