Skip to content

Commit

Permalink
Adjust window size
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanschneider committed Mar 30, 2021
1 parent 3491a7a commit e2fb549
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ let mainWindow;
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 700,
height: 507,
useContentSize: true,
minWidth: 700,
minHeight: 507,
autoHideMenuBar: true
// width: 700,
// height: 550,
});

// and load the index.html of the app.
Expand Down

0 comments on commit e2fb549

Please sign in to comment.