pdf-viewer: Hide menubar in pdf window.

We don't want to show the menubar in a pdf window
so setting it to null.
This commit is contained in:
Akash Nimare
2018-08-30 21:32:31 +05:30
parent c30d0cc77b
commit 09cf21bf49

View File

@@ -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