improve the space for double tapping

This commit is contained in:
Bnyro 2022-07-27 09:05:10 +02:00
parent 217dd9b990
commit a7ea5c0cfb

View File

@ -1099,8 +1099,8 @@ class PlayerFragment : Fragment() {
override fun onEvent(x: Float) { override fun onEvent(x: Float) {
val width = exoPlayerView.width val width = exoPlayerView.width
when { when {
width * 0.45 > x -> rewind() width * 0.5 > x -> rewind()
width * 0.55 < x -> forward() width * 0.5 < x -> forward()
} }
} }
} }