Skip to content

Commit

Permalink
feat(App): Decrease minimum window size to 600px width
Browse files Browse the repository at this point in the history
Closes #239
  • Loading branch information
adlk committed Nov 21, 2017
1 parent 6456fd4 commit 2521621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ const createWindow = async () => {
y: mainWindowState.y,
width: mainWindowState.width,
height: mainWindowState.height,
minWidth: 800,
minHeight: 600,
minWidth: 600,
minHeight: 400,
titleBarStyle: 'hidden',
backgroundColor: '#3498db',
autoHideMenuBar: true,
Expand Down

0 comments on commit 2521621

Please sign in to comment.