We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 199207c commit 795da2dCopy full SHA for 795da2d
src/index.ts
@@ -386,10 +386,8 @@ export class PersistentBottomSheet extends GridLayout {
386
if (this.scrollViewAtTop) {
387
this.scrollViewAtTop = this.scrollView.verticalOffset === 0;
388
const y = touchY - (this.lastTouchY || touchY);
389
- if (y !== 0) {
390
- const totalDelta = this.translationY + y;
391
- this.computeAndAnimateEndGestureAnimation(totalDelta);
392
- }
+ const totalDelta = this.translationY + y;
+ this.computeAndAnimateEndGestureAnimation(totalDelta);
393
}
394
395
this.isScrollEnabled = true;
0 commit comments