Skip to content

Commit ee1eead

Browse files
committed
Solved a problem occurring when tapping on a date
1 parent 662460d commit ee1eead

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed
-45 Bytes
Binary file not shown.

collapsiblecalendarview2/src/main/java/com/shrikanthravi/collapsiblecalendarview/listener/OnSwipeTouchListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private final class GestureListener extends SimpleOnGestureListener {
2727

2828
@Override
2929
public boolean onDown(MotionEvent e) {
30-
return true;
30+
return false;
3131
}
3232

3333
@Override

collapsiblecalendarview2/src/main/java/com/shrikanthravi/collapsiblecalendarview/view/LockScrollView.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,10 @@ public LockScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
2525

2626
@Override
2727
public boolean onInterceptTouchEvent(MotionEvent ev) {
28-
super.onInterceptTouchEvent(ev);
2928
return false;
3029
}
3130
@Override
3231
public boolean onTouchEvent(MotionEvent ev) {
33-
super.onTouchEvent(ev);
3432
return false;
3533
}
3634
}

0 commit comments

Comments
 (0)