From 6907cf997284a3d423a9e024b303722d142265d4 Mon Sep 17 00:00:00 2001 From: Rokt33r Date: Wed, 9 Mar 2016 19:43:34 +0900 Subject: [PATCH] The notification of 'Copy to Clipboard' must be slient --- browser/finder/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() }