mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
fix(useFullscreen): remove handling of F keyboard key
This commit is contained in:
parent
ad11609bee
commit
5dcd6f48cd
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ const useFullscreen = () => {
|
|||
exitFullscreen();
|
||||
}
|
||||
|
||||
if ((event.code === 'F11' || event.code === 'KeyF') && shell.active) {
|
||||
if (event.code === 'F11' && shell.active) {
|
||||
toggleFullscreen();
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue