mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
Prevent audio miniplayer from being minimized with gestures
This commit is contained in:
parent
a3f103ab10
commit
1c1520efde
@ -81,7 +81,9 @@ class SingleViewTouchableMotionLayout(context: Context, attributeSet: AttributeS
|
||||
override fun onTouchEvent(event: MotionEvent): Boolean {
|
||||
gestureDetector.onTouchEvent(event)
|
||||
|
||||
// gestureDetector.onTouchEvent(event)
|
||||
// don't react when trying to minimize audio player with gestures
|
||||
if (viewToDetectTouch.id == R.id.audio_player_container && progress != 1f) return true
|
||||
|
||||
when (event.actionMasked) {
|
||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
||||
touchStarted = false
|
||||
|
Loading…
Reference in New Issue
Block a user