Fix scroller handle being cut off

This commit is contained in:
ViAnh
2025-02-03 16:45:41 +07:00
committed by Koitharu
parent 5d74bdd3b4
commit c37f795dac

View File

@@ -162,7 +162,7 @@ class FastScroller @JvmOverloads constructor(
override fun onSizeChanged(w: Int, h: Int, oldW: Int, oldH: Int) {
super.onSizeChanged(w, h, oldW, oldH)
viewHeight = h
viewHeight = h - paddingTop - paddingBottom
}
@SuppressLint("ClickableViewAccessibility")