fix window bounds, use modern method to cancel new windows

This commit is contained in:
HorizonCode 2022-10-16 16:06:06 +02:00
parent c648cfd2b3
commit 3baa262ca6
1 changed files with 2 additions and 4 deletions

6
app.js
View File

@ -31,14 +31,12 @@ const run = () => {
function createWindow() {
// Create the browser window.
const win = windowManager.createWindow(480, 320);
const win = windowManager.createWindow(480, 420);
win.loadFile('./html/index.html');
attachTitlebarToWindow(win);
win.webContents.on('new-window', function (e, url) {
e.preventDefault();
});
win.webContents.setWindowOpenHandler(() => "deny");
win.webContents.on('did-finish-load', function () {
if (win.webContents.getZoomFactor() != 0.9)
win.webContents.setZoomFactor(0.9)