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.
2 parents 214025a + 7f63b88 commit 00793c6Copy full SHA for 00793c6
library/src/main/java/com/sothree/slidinguppanel/SlidingUpPanelLayout.java
@@ -1125,7 +1125,9 @@ private void applyParallaxForCurrentSlideOffset() {
1125
}
1126
1127
private void onPanelDragged(int newTop) {
1128
- mLastNotDraggingSlideState = mSlideState;
+ if (mSlideState != PanelState.DRAGGING) {
1129
+ mLastNotDraggingSlideState = mSlideState;
1130
+ }
1131
setPanelStateInternal(PanelState.DRAGGING);
1132
// Recompute the slide offset based on the new top position
1133
mSlideOffset = computeSlideOffset(newTop);
0 commit comments