fix: TV Back button not working and choppy sidebar animations

This commit is contained in:
Aleksi Lassila
2024-04-14 15:38:28 +03:00
parent 72027faff2
commit d3a47555fd
8 changed files with 29 additions and 9 deletions

View File

@@ -714,7 +714,7 @@ export function handleKeyboardNavigation(event: KeyboardEvent) {
else {
currentlyFocusedObject.select();
}
} else if (event.key === 'Back') {
} else if (event.key === 'Back' || event.key === 'XF86Back') {
} else if (event.key === 'MediaPlayPause') {
}
}