1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-23 16:40:32 +00:00

Enable play/pause with space key even when not in fullscreen player

This commit is contained in:
ktprograms 2021-11-03 08:26:13 +08:00
parent 34ab93c9bd
commit 2934841152

View File

@ -3752,11 +3752,9 @@ public final class Player implements
default: default:
break; break;
case KeyEvent.KEYCODE_SPACE: case KeyEvent.KEYCODE_SPACE:
if (isFullscreen) { playPause();
playPause(); if (isPlaying()) {
if (isPlaying()) { hideControls(0, 0);
hideControls(0, 0);
}
} }
break; break;
case KeyEvent.KEYCODE_BACK: case KeyEvent.KEYCODE_BACK: