Switch debug and picture in picture shortcuts for consistency (#2141)

* Switch debug and picture in picture shortcuts for consistency

* Add preventDefault to statsmodal shortcut
This commit is contained in:
vallode 2022-04-08 04:40:29 +02:00 committed by GitHub
parent 884e0967df
commit 6559732207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -1568,7 +1568,12 @@ export default Vue.extend({
case 73:
// I Key
event.preventDefault()
this.toggleShowStatsModal()
// Toggle Picture in Picture Mode
if (!this.player.isInPictureInPicture()) {
this.player.requestPictureInPicture()
} else if (this.player.isInPictureInPicture()) {
this.player.exitPictureInPicture()
}
break
case 49:
// 1 Key
@ -1642,12 +1647,8 @@ export default Vue.extend({
break
case 68:
// D Key
// Toggle Picture in Picture Mode
if (!this.player.isInPictureInPicture()) {
this.player.requestPictureInPicture()
} else if (this.player.isInPictureInPicture()) {
this.player.exitPictureInPicture()
}
event.preventDefault()
this.toggleShowStatsModal()
break
case 27:
// esc Key