Mikael Finstad
Mikael Finstad
this is not necessary because the caret `^` will allow 4.0.2 to be installed. learn more: https://semver.org/
Anyone found a solution?
i will close this as a duplicate of #1470
did you find any workaround? I found that if setting `autoHideMenuBar: true` in the BrowserWindow constructor, then the menu disappears completely in fullscreen (but also when not in fullscreen). see...
I found in the source code that windows is handled differently from the others. Windows: https://github.com/electron/electron/blob/cee51785e1ed057fa5c78b2fc7bb1e8a5b91053d/shell/browser/native_window_views.cc#L720 Others: https://github.com/electron/electron/blob/cee51785e1ed057fa5c78b2fc7bb1e8a5b91053d/shell/browser/native_window_views.cc#L756 specifically, the auto-hide menu bar code only gets called for non-windows: https://github.com/electron/electron/blob/cee51785e1ed057fa5c78b2fc7bb1e8a5b91053d/shell/browser/native_window_views.cc#L763...
still a bug i bielieve
Having the same problem Simple test case: ```js // index.js const electron = require('electron'); electron.app.whenReady().then(() => { const mainWindow = new electron.BrowserWindow({ webPreferences: { contextIsolation: false, nodeIntegration: true, }, });...
Maybe to disable nodeIntegration
thanks for your pr. Tests and linters are failing