Skip to content

Commit

Permalink
fix: initial window is slightly bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
KraXen72 committed Apr 21, 2022
1 parent 28beb36 commit 87a3a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ electron_1.app.on('ready', function () {
}
mainWindow = new electron_1.BrowserWindow({
show: false,
width: 1600,
height: 900,
width: 1830,
height: 1000,
center: true,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
Expand Down
4 changes: 2 additions & 2 deletions app/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ app.on('ready', function () {

mainWindow = new BrowserWindow({
show: false,
width: 1600,
height: 900,
width: 1830,
height: 1000,
center: true,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
Expand Down

0 comments on commit 87a3a91

Please sign in to comment.