Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Commit

Permalink
Make default size bigger to avoid clipping ui
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
  • Loading branch information
jmorganca committed Oct 24, 2015
1 parent 914bc6d commit 5858dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ if (process.platform === 'win32') {

app.on('ready', function () {
var mainWindow = new BrowserWindow({
width: size.width || 800,
height: size.height || 600,
width: size.width || 1000,
height: size.height || 680,
'min-width': os.platform() === 'win32' ? 400 : 700,
'min-height': os.platform() === 'win32' ? 260 : 500,
'standard-window': false,
Expand Down

0 comments on commit 5858dbd

Please sign in to comment.