Fixed swipe to mark read / flag conversation

pull/194/head
M66B 4 years ago
parent a3947a9b22
commit 4e71cb4316

@ -2921,7 +2921,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
Bundle args = new Bundle(); Bundle args = new Bundle();
args.putLongArray("ids", id == null ? getSelection() : new long[]{id}); args.putLongArray("ids", id == null ? getSelection() : new long[]{id});
args.putBoolean("seen", seen); args.putBoolean("seen", seen);
args.putBoolean("threading", threading && id == null); args.putBoolean("threading", threading &&
(id == null || viewType != AdapterMessage.ViewType.THREAD));
//if (selectionTracker != null) //if (selectionTracker != null)
// selectionTracker.clearSelection(); // selectionTracker.clearSelection();
@ -3059,7 +3060,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
args.putBoolean("flagged", flagged); args.putBoolean("flagged", flagged);
if (color != null) if (color != null)
args.putInt("color", color); args.putInt("color", color);
args.putBoolean("threading", threading && id == null); args.putBoolean("threading", threading &&
(id == null || viewType != AdapterMessage.ViewType.THREAD));
//selectionTracker.clearSelection(); //selectionTracker.clearSelection();

Loading…
Cancel
Save