adjust window size, enable dev tools in dev

This commit is contained in:
HorizonCode 2024-01-09 14:47:28 +01:00
parent e8f0027424
commit 895b71ef16

11
main.js
View File

@ -20,12 +20,11 @@ function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 800,
height: 600,
width: 600,
height: 380,
resizable: false,
frame: false,
titleBarStyle: "hidden",
titleBarOverlay: true,
webPreferences: {
nodeIntegration: true,
preload: path.join(__dirname, "preload.js"),
@ -55,8 +54,10 @@ function createWindow() {
// loadURL(mainWindow);
// Open the DevTools and also disable Electron Security Warning.
// process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = true;
// mainWindow.webContents.openDevTools();
if (isDev()) {
process.env["ELECTRON_DISABLE_SECURITY_WARNINGS"] = true;
mainWindow.webContents.openDevTools({ mode: "detach" });
}
// Emitted when the window is closed.
mainWindow.on("closed", function () {