don't reinit conversation when coming back to activity. avoids unnecessary scrolling
This commit is contained in:
parent
ceadf2f6fb
commit
fe5c4cab46
|
@ -927,9 +927,7 @@ public class ConversationActivity extends XmppActivity
|
||||||
}
|
}
|
||||||
this.mConversationFragment.reInit(getSelectedConversation());
|
this.mConversationFragment.reInit(getSelectedConversation());
|
||||||
mOpenConverstaion = null;
|
mOpenConverstaion = null;
|
||||||
} else if (getSelectedConversation() != null) {
|
} else if (getSelectedConversation() == null) {
|
||||||
this.mConversationFragment.reInit(getSelectedConversation());
|
|
||||||
} else {
|
|
||||||
showConversationsOverview();
|
showConversationsOverview();
|
||||||
mPendingImageUris.clear();
|
mPendingImageUris.clear();
|
||||||
mPendingFileUris.clear();
|
mPendingFileUris.clear();
|
||||||
|
|
Loading…
Reference in New Issue