3cb0ed306b
* fix: menu visibility should not be overwritten on startup * fix: removing menu for window without global menubar * test: setMenu tests are not for mac
17 lines
360 B
JavaScript
17 lines
360 B
JavaScript
const { app, BrowserWindow } = require('electron')
|
|
|
|
let win
|
|
app.on('ready', function () {
|
|
win = new BrowserWindow({})
|
|
win.loadURL('about:blank')
|
|
win.setMenuBarVisibility(false)
|
|
|
|
setTimeout(() => {
|
|
if (win.isMenuBarVisible()) {
|
|
console.log('Window has a menu')
|
|
} else {
|
|
console.log('Window has no menu')
|
|
}
|
|
app.quit()
|
|
})
|
|
})
|