Ensure HomeScreenGrid steals touches from widgets when folder is open

This closes #147
This commit is contained in:
Ensar Sarajčić 2023-09-26 10:39:50 +02:00
parent 6038aac349
commit a091f4ff4c
1 changed files with 9 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import android.text.TextUtils
import android.util.AttributeSet
import android.util.Size
import android.util.SizeF
import android.view.MotionEvent
import android.view.View
import android.view.animation.DecelerateInterpolator
import android.view.animation.OvershootInterpolator
@ -1511,6 +1512,14 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
}
}
override fun onInterceptTouchEvent(ev: MotionEvent?): Boolean {
return if (currentlyOpenFolder != null) {
true
} else {
super.onInterceptTouchEvent(ev)
}
}
private fun Canvas.drawItemInCell(item: HomeScreenGridItem, cell: Rect) {
if (item.id != draggedItem?.id) {
val drawableX = cell.left + iconMargin