Fix bug with paired list incorrectly adding to the specified position.
This bug led to incorrect refreshing of the timeline
This commit is contained in:
parent
38db48c7cb
commit
c6aad085a9
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ public final class PairedList<T, V> extends AbstractList<T> {
|
||||||
@Override
|
@Override
|
||||||
public void add(int index, T element) {
|
public void add(int index, T element) {
|
||||||
synced.add(index, mapper.apply(element));
|
synced.add(index, mapper.apply(element));
|
||||||
main.add(element);
|
main.add(index, element);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue