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

Commit

Permalink
fix(browserwindow): decrease minWidth
Browse files Browse the repository at this point in the history
Decrease min width to make it possible to snap the window to the sides.

fix #203
  • Loading branch information
kontrollanten committed Aug 19, 2020
1 parent 0326d17 commit 394117b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/index.js
Expand Up @@ -51,7 +51,7 @@ function createMainWindow() {
width: 1300,
height: 850,
icon: process.platform === 'linux' && path.join(__dirname, 'images/Icon.png'),
minWidth: 1000,
minWidth: 500,
minHeight: 700,
alwaysOnTop: settings.getSync('alwaysOnTop'),
titleBarStyle: 'hiddenInset',
Expand Down

0 comments on commit 394117b

Please sign in to comment.