From 09cf21bf49fa1c808d3e3c6dd82d8c47ff1d526b Mon Sep 17 00:00:00 2001 From: Akash Nimare Date: Thu, 30 Aug 2018 21:32:31 +0530 Subject: [PATCH] pdf-viewer: Hide menubar in pdf window. We don't want to show the menubar in a pdf window so setting it to null. --- app/main/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/main/index.js b/app/main/index.js index 75250e57..51134cfe 100644 --- a/app/main/index.js +++ b/app/main/index.js @@ -217,6 +217,9 @@ app.on('ready', () => { } }); pdfWindow.loadURL(url); + + // We don't want to have the menu bar in pdf window + pdfWindow.setMenu(null); }); // Reload full app not just webview, useful in debugging