mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-08 05:20:23 +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();
|
exitFullscreen();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((event.code === 'F11' || event.code === 'KeyF') && shell.active) {
|
if (event.code === 'F11' && shell.active) {
|
||||||
toggleFullscreen();
|
toggleFullscreen();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue