We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a3078 commit 4a8c3a6Copy full SHA for 4a8c3a6
src/main.ts
@@ -6,7 +6,10 @@ app.once('ready', () => {
6
7
const win = new BrowserWindow({
8
width: 600,
9
- height: 400
+ height: 400,
10
+ webPreferences: {
11
+ nativeWindowOpen: true //get rid of nativeWindowOpen deprecation message: https://github.com/electron/electron/issues/28511
12
+ }
13
});
14
15
const rendererHtmlPath = path.join(`${__dirname}/renderer.html`);
0 commit comments