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 84001f5 commit f53ccb0Copy full SHA for f53ccb0
library/src/main/java/com/daimajia/swipe/SwipeLayout.java
@@ -329,10 +329,10 @@ public int getViewVerticalDragRange(View child) {
329
@Override
330
public void onViewReleased(View releasedChild, float xvel, float yvel) {
331
super.onViewReleased(releasedChild, xvel, yvel);
332
+ processHandRelease(xvel, yvel, isCloseBeforeDrag);
333
for (SwipeListener l : mSwipeListeners){
334
l.onHandRelease(SwipeLayout.this, xvel, yvel);
335
}
- processHandRelease(xvel, yvel, isCloseBeforeDrag);
336
337
invalidate();
338
0 commit comments