small fixes

This commit is contained in:
zadam
2019-11-13 20:28:14 +01:00
parent d4a277321c
commit 920d71a5a6
3 changed files with 6 additions and 21 deletions

View File

@@ -21,26 +21,6 @@ let mainWindow;
require('electron-dl')({ saveAs: true });
// contextMenu({
// menu: (actions, params, browserWindow) => [
// actions.cut(),
// actions.copy(),
// actions.copyLink(),
// actions.paste(),
// {
// label: 'Search DuckDuckGo for “{selection}”',
// // Only show it when right-clicking text
// visible: params.selectionText.trim().length > 0,
// click: () => {
// const {shell} = require('electron');
//
// shell.openExternal(`https://duckduckgo.com?q=${encodeURIComponent(params.selectionText)}`);
// }
// },
// actions.inspect()
// ]
// });
function onClosed() {
// Dereference the window
// For multiple windows store them in an array
@@ -104,6 +84,9 @@ app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
else if (process.platform === 'win32') {
app.exit(0); // attempt to fix the issue when app.quite() won't terminate processes on windows
}
});
app.on('activate', () => {