mirror of https://github.com/M66B/FairEmail.git
Fixed initial scroll up
This commit is contained in:
parent
a0175a655c
commit
7c445696dc
|
@ -3339,7 +3339,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
cur++;
|
||||
}
|
||||
|
||||
if (gotoTop || cur > prev) {
|
||||
if (gotoTop ||
|
||||
(previousList != null && currentList != null && cur > prev)) {
|
||||
gotoTop = false;
|
||||
properties.scrollTo(0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue