mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 08:52:16 +01:00
Fix full screen detection for Chromium
This commit is contained in:
parent
fab45dedcd
commit
58cf109a83
1 changed files with 8 additions and 2 deletions
|
|
@ -394,9 +394,15 @@ class BrowserWindow extends EventEmitter {
|
||||||
if (typeof (window as any)["fullScreen"] !== "undefined") {
|
if (typeof (window as any)["fullScreen"] !== "undefined") {
|
||||||
return (window as any)["fullScreen"];
|
return (window as any)["fullScreen"];
|
||||||
}
|
}
|
||||||
|
|
||||||
// tslint:enable no-any
|
// tslint:enable no-any
|
||||||
return false;
|
|
||||||
|
try {
|
||||||
|
return window.matchMedia("(display-mode: fullscreen)").matches;
|
||||||
|
} catch (error) {
|
||||||
|
logger.error(error.message);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public isFocused(): boolean {
|
public isFocused(): boolean {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue