mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Invalidate item decorators
This commit is contained in:
@@ -6473,7 +6473,17 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (rv != null)
|
||||
savedState = rv.getLayoutManager().onSaveInstanceState();
|
||||
|
||||
differ.submitList(list);
|
||||
differ.submitList(list, new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
if (rv != null)
|
||||
rv.invalidateItemDecorations();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
PagedList<TupleMessageEx> getCurrentList() {
|
||||
|
||||
Reference in New Issue
Block a user