Skip to content

Commit 87329b5

Browse files
fix
1 parent 4adab4f commit 87329b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/io-managers/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export function createInputManager(editor: Editor, dialog: DialogState, portfoli
9292
if (key === "KeyV" && accelKey) return false;
9393

9494
// Don't redirect a fullscreen request on web
95-
if (key === "F11" && e.type === "keydown" && !e.repeat && isDesktop()) {
95+
if (key === "F11" && e.type === "keydown" && !e.repeat && !isDesktop()) {
9696
e.preventDefault();
9797
fullscreen.toggleFullscreen();
9898
return false;

0 commit comments

Comments
 (0)