From 98f74bf0312b4ab52981d99f39d82f39fca43ed0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 10 Oct 2020 19:22:12 +0200 Subject: [PATCH] Hide the toolbar --- src/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.js b/src/index.js index 997ca0f..f436477 100644 --- a/src/index.js +++ b/src/index.js @@ -16,6 +16,9 @@ function createWindow() { shell.openExternal(url) }) + // Hide the toolbar + win.setMenuBarVisibility(false) + // The starting point of the app win.loadFile('./frontend/index.html') }