Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1120,8 +1120,6 @@ public void requestDisallowInterceptTouchEvent( boolean disallowIntercept ) {
@Override
public boolean onInterceptTouchEvent( MotionEvent ev ) {

getParent().requestDisallowInterceptTouchEvent( true );

if ( mIsDragging ) return false;

final int action = ev.getAction();
Expand Down Expand Up @@ -1174,7 +1172,12 @@ public boolean onInterceptTouchEvent( MotionEvent ev ) {
parent.requestDisallowInterceptTouchEvent( true );
}
postScrollNotifier();
}
} else {
final ViewParent parent = getParent();
if ( parent != null ) {
parent.requestDisallowInterceptTouchEvent( false );
}
}
break;
}

Expand Down