mirror of
https://github.com/oxen-io/session-android.git
synced 2025-05-01 09:40:47 +00:00
Fixes "subtitle is not updated when select all is pressed"
// FREEBIE
This commit is contained in:
parent
1ad54e7b88
commit
d8cb893681
@ -227,10 +227,14 @@ public class ConversationListFragment extends SherlockListFragment
|
|||||||
|
|
||||||
private void handleSelectAllThreads() {
|
private void handleSelectAllThreads() {
|
||||||
((ConversationListAdapter)this.getListAdapter()).selectAllThreads();
|
((ConversationListAdapter)this.getListAdapter()).selectAllThreads();
|
||||||
|
actionMode.setSubtitle(getString(R.string.conversation_fragment_cab__batch_selection_amount,
|
||||||
|
((ConversationListAdapter)this.getListAdapter()).getBatchSelections().size()));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleUnselectAllThreads() {
|
private void handleUnselectAllThreads() {
|
||||||
((ConversationListAdapter)this.getListAdapter()).selectAllThreads();
|
((ConversationListAdapter)this.getListAdapter()).selectAllThreads();
|
||||||
|
actionMode.setSubtitle(getString(R.string.conversation_fragment_cab__batch_selection_amount,
|
||||||
|
((ConversationListAdapter)this.getListAdapter()).getBatchSelections().size()));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleCreateConversation(long threadId, Recipients recipients, int distributionType) {
|
private void handleCreateConversation(long threadId, Recipients recipients, int distributionType) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user