mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Fixed swipe to mark read / flag conversation
This commit is contained in:
parent
a3947a9b22
commit
4e71cb4316
1 changed files with 4 additions and 2 deletions
|
@ -2921,7 +2921,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
Bundle args = new Bundle();
|
||||
args.putLongArray("ids", id == null ? getSelection() : new long[]{id});
|
||||
args.putBoolean("seen", seen);
|
||||
args.putBoolean("threading", threading && id == null);
|
||||
args.putBoolean("threading", threading &&
|
||||
(id == null || viewType != AdapterMessage.ViewType.THREAD));
|
||||
|
||||
//if (selectionTracker != null)
|
||||
// selectionTracker.clearSelection();
|
||||
|
@ -3059,7 +3060,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
args.putBoolean("flagged", flagged);
|
||||
if (color != null)
|
||||
args.putInt("color", color);
|
||||
args.putBoolean("threading", threading && id == null);
|
||||
args.putBoolean("threading", threading &&
|
||||
(id == null || viewType != AdapterMessage.ViewType.THREAD));
|
||||
|
||||
//selectionTracker.clearSelection();
|
||||
|
||||
|
|
Loading…
Reference in a new issue