diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2023-05-22 10:33:06 +0200 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2023-05-22 10:52:38 +0200 |
commit | 4710eb07e203b41c325e6e22f9320757ee783d93 (patch) | |
tree | 410bbebcbe9df5254b1dd084fe72586d07c56da1 | |
parent | 9605c3dd0f932618f6eda19a467b9a7e0029e3d6 (diff) |
fix(full-screen) don't restore full-screen state
Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/471
-rw-r--r-- | main.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -177,7 +177,8 @@ function createJitsiMeetWindow() { // Load the previous window state with fallback to defaults. const windowState = windowStateKeeper({ defaultWidth: 800, - defaultHeight: 600 + defaultHeight: 600, + fullScreen: false }); // Path to root directory. |