Small fix to check whether fullscreen mode is available

pull/6/head
peshomir 2024-10-26 20:05:17 +03:00 committed by GitHub
parent 97861a1084
commit ffb8686877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -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(() => {