aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-21 12:18:21 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-21 12:18:21 +0100
commit25216210b1f86565bcc88f1805ddd58c6c4ceb29 (patch)
tree28238eb6ce3c5f3a8303b323026474233033f614
parentMerge pull request #313 from meetfranz/feature/translation-help (diff)
downloadferdium-app-25216210b1f86565bcc88f1805ddd58c6c4ceb29.tar.gz
ferdium-app-25216210b1f86565bcc88f1805ddd58c6c4ceb29.tar.zst
ferdium-app-25216210b1f86565bcc88f1805ddd58c6c4ceb29.zip
feat(App): Decrease minimum window size to 600px width
Closes #239
-rw-r--r--src/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js
index efb3be737..a95b93c50 100644
--- a/src/index.js
+++ b/src/index.js
@@ -57,8 +57,8 @@ const createWindow = async () => {
57 y: mainWindowState.y, 57 y: mainWindowState.y,
58 width: mainWindowState.width, 58 width: mainWindowState.width,
59 height: mainWindowState.height, 59 height: mainWindowState.height,
60 minWidth: 800, 60 minWidth: 600,
61 minHeight: 600, 61 minHeight: 400,
62 titleBarStyle: 'hidden', 62 titleBarStyle: 'hidden',
63 backgroundColor: '#3498db', 63 backgroundColor: '#3498db',
64 autoHideMenuBar: true, 64 autoHideMenuBar: true,