From 34c5c9f6217810310481e9b879839330ff6013a3 Mon Sep 17 00:00:00 2001 From: Luna712 <142361265+Luna712@users.noreply.github.com> Date: Thu, 13 Jun 2024 18:46:24 -0600 Subject: [PATCH] Remove spaces for consistency --- .../com/lagradost/cloudstream3/ui/download/DownloadFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/lagradost/cloudstream3/ui/download/DownloadFragment.kt b/app/src/main/java/com/lagradost/cloudstream3/ui/download/DownloadFragment.kt index 94e2531a..767e4906 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/ui/download/DownloadFragment.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/ui/download/DownloadFragment.kt @@ -434,7 +434,7 @@ class SwipeToDeleteCallback(private val adapter: DownloadHeaderAdapter) : ItemTo val backgroundTop = swipeItemView.top val backgroundBottom = swipeItemView.bottom - if (x in backgroundLeft..backgroundRight && y in backgroundTop .. backgroundBottom) { + if (x in backgroundLeft..backgroundRight && y in backgroundTop..backgroundBottom) { handleDelete(pos) handled = true }