From 005b66f4f46570fb52b528814170bd528081e6b0 Mon Sep 17 00:00:00 2001 From: azivner Date: Sat, 1 Sep 2018 13:41:01 +0200 Subject: [PATCH] smaller initial height of 800 to fit into 1600*900 display --- electron.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/electron.js b/electron.js index 75d1e5fe5..ba5e3b556 100644 --- a/electron.js +++ b/electron.js @@ -25,8 +25,9 @@ function onClosed() { async function createMainWindow() { const win = new electron.BrowserWindow({ + // initial window width & height so it's usable on 1600 * 900 display (including some extra panels etc.) width: 1200, - height: 900, + height: 800, title: 'Trilium Notes', icon: path.join(__dirname, 'src/public/images/app-icons/png/256x256.png') });