From 860a3b16ad06a44874341842301f24eab5a006f5 Mon Sep 17 00:00:00 2001 From: Anoop M D Date: Sat, 7 Oct 2023 03:26:12 +0530 Subject: [PATCH] fix(#440): bring back menu bar --- packages/bruno-electron/src/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/bruno-electron/src/index.js b/packages/bruno-electron/src/index.js index 3908373e..3f67b8a9 100644 --- a/packages/bruno-electron/src/index.js +++ b/packages/bruno-electron/src/index.js @@ -37,8 +37,10 @@ app.on('ready', async () => { webviewTag: true }, title: 'Bruno', - icon: path.join(__dirname, 'about/256x256.png'), - autoHideMenuBar: true + icon: path.join(__dirname, 'about/256x256.png') + // we will bring this back + // see https://github.com/usebruno/bruno/issues/440 + // autoHideMenuBar: true }); const url = isDev