1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-30 18:51:23 +00:00

Merge pull request #13030 from iampopovich/fix/6815-double-tap-to-resume

[fix] Hide controls when resuming playback via double tap
This commit is contained in:
Tobi
2026-02-21 11:08:51 -08:00
committed by GitHub

View File

@@ -47,6 +47,9 @@ abstract class BasePlayerGestureListener(
startMultiDoubleTap(event)
} else if (portion === DisplayPortion.MIDDLE) {
player.playPause()
if (player.isPlaying) {
playerUi.hideControls(0, 0)
}
}
}