Remove spaces for consistency

This commit is contained in:
Luna712 2024-06-13 18:46:24 -06:00 committed by GitHub
parent 0ceb273b35
commit 34c5c9f621
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}