Skip to content
Snippets Groups Projects
Commit 66a1c3a1 authored by DFN2's avatar DFN2
Browse files

changed default window dimensions

parent 49e99377
No related branches found
No related tags found
1 merge request!1Push to release
......@@ -4,8 +4,8 @@
"windowBounds": {
"x": 0,
"y": 0,
"width": 1024,
"height": 768
"width": 1250,
"height": 800
}
},
"updateCheckAfter": 86400000, "//": "milliseconds"
......
......@@ -64,6 +64,7 @@ function stopOcsManager() {
}
function createWindow() {
const appConfigStore = new ElectronStore({
name: appConfigStoreStorage,
defaults: appConfig.defaults
......@@ -74,10 +75,9 @@ function createWindow() {
mainWindow = new BrowserWindow({
title: appPackage.productName,
icon: windowIcon,
x: windowBounds.x,
y: windowBounds.y,
width: windowBounds.width,
height: windowBounds.height,
width: 1250,
height: 800,
center:true,
webPreferences: {
nodeIntegration: true
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment