Attempt to fix multiple selection keeping active

This commit is contained in:
M66B
2019-05-19 08:11:27 +02:00
parent e3c833112f
commit 9b37f00909
2 changed files with 14 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ final class GestureSelectionHelper implements OnItemTouchListener {
case MotionEvent.ACTION_MOVE:
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_CANCEL:
return mStarted;
return mStarted && mSelectionMgr.isRangeActive();
default:
return false;
}