scroller: fix scrolling post last tick

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/672/head
Varun Patil 2023-05-30 00:43:45 -07:00
parent b1a141ff9b
commit 88e9ed068b
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ export default defineComponent({
} else if (idx >= this.ticks.length) { } else if (idx >= this.ticks.length) {
const t = this.ticks[this.ticks.length - 1]; const t = this.ticks[this.ticks.length - 1];
top1 = t.topF; top1 = t.topF;
top2 = this.height; top2 = this.fullHeight;
y1 = t.y; y1 = t.y;
y2 = this.recyclerHeight; y2 = this.recyclerHeight;
} else { } else {