From f9f1e2ddec5e522e54bd678d9d15aa4d8774e9dc Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Thu, 14 Jul 2016 16:55:24 +0200 Subject: [PATCH] Set min size (#82) --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index d94926b1..fd004c19 100644 --- a/index.js +++ b/index.js @@ -43,6 +43,8 @@ app.on('ready', () => { let win = new BrowserWindow({ width: 540, height: 380, + minHeight: 190, + minWidth: 370, titleBarStyle: 'hidden-inset', title: 'HyperTerm', backgroundColor: toHex(config.getConfig().backgroundColor || '#000'),