From ffb86868775819cf9ef7d79bfc3bb62297613682 Mon Sep 17 00:00:00 2001 From: peshomir <80340328+peshomir@users.noreply.github.com> Date: Sat, 26 Oct 2024 20:05:17 +0300 Subject: [PATCH] Small fix to check whether fullscreen mode is available --- src/settings.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/settings.js b/src/settings.js index 2fc54b1..966f915 100644 --- a/src/settings.js +++ b/src/settings.js @@ -243,13 +243,11 @@ const settingsManager = new (function () { __fx.makeMainMenuTransparent = settings.customBackgroundUrl !== ""; }; - if (settings.useFullscreenMode && document.fullscreenEnabled) { - tryEnterFullscreen(); - } + if (settings.useFullscreenMode) tryEnterFullscreen(); })(); export function tryEnterFullscreen() { - if (document.fullscreenElement !== null) return; + if (document.fullscreenElement !== null || !document.fullscreenEnabled) return; document.documentElement .requestFullscreen({ navigationUI: "hide" }) .then(() => {