Reduce window size

This commit is contained in:
Scott E. Graves
2019-06-04 16:53:33 -05:00
parent 7aa17de4be
commit a5e21c8dfc
4 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ function createWindow() {
}
// Create the browser window.
const height = (process.env.ELECTRON_START_URL || (os.platform() === 'darwin') ? 364 : 344) - ((os.platform() === 'win32') ? 0 : 20);
const height = (process.env.ELECTRON_START_URL || (os.platform() === 'darwin') ? 294 : 274) - ((os.platform() === 'win32') ? 0 : 20);
mainWindow = new BrowserWindow({
width: 428 + ((os.platform() === 'win32') ? 0 : (os.platform() === 'darwin') ? 150 : 160),
height: height,