Enable play/pause with space key even when not in fullscreen player
This commit is contained in:
parent
34ab93c9bd
commit
2934841152
1 changed files with 3 additions and 5 deletions
|
@ -3752,12 +3752,10 @@ public final class Player implements
|
|||
default:
|
||||
break;
|
||||
case KeyEvent.KEYCODE_SPACE:
|
||||
if (isFullscreen) {
|
||||
playPause();
|
||||
if (isPlaying()) {
|
||||
hideControls(0, 0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case KeyEvent.KEYCODE_BACK:
|
||||
if (DeviceUtils.isTv(context) && isControlsVisible()) {
|
||||
|
|
Loading…
Reference in a new issue