diff --git a/browser/finder/index.js b/browser/finder/index.js index 4a6a110c..cda861d4 100644 --- a/browser/finder/index.js +++ b/browser/finder/index.js @@ -29,7 +29,6 @@ function hideFinder () { function notify (title, options) { if (process.platform === 'win32') { options.icon = path.join('file://', global.__dirname, '../../resources/app.png') - options.silent = false } return new window.Notification(title, options) } @@ -96,7 +95,8 @@ class FinderMain extends React.Component { ipcRenderer.send('copy-finder') notify('Saved to Clipboard!', { - body: 'Paste it wherever you want!' + body: 'Paste it wherever you want!', + silent: true }) hideFinder() }