1
0
Fork 0
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:
M66B 2021-02-15 11:04:46 +01:00
parent a3947a9b22
commit 4e71cb4316

View file

@ -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();