From 38bbeac8c38a22e0717fe52c4387c60faca5a31e Mon Sep 17 00:00:00 2001 From: Yongfeng LI Date: Mon, 20 Jan 2020 14:13:50 +0800 Subject: [PATCH] Increate window width --- electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron.js b/electron.js index a9a6b4e..71c3433 100644 --- a/electron.js +++ b/electron.js @@ -70,7 +70,7 @@ function isWin() { function createWindow() { mainWindow = new BrowserWindow({ - width: isWin() ? 370 : 358, + width: isWin() ? 380 : 358, height: isWin() ? 665 : 600, webPreferences: { preload: path.join(__dirname, 'preload.js') } })