aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index d07576569..76c0222c9 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -98,6 +98,10 @@ export default class AppStore extends Store {
98 ipcRenderer.on('autoUpdate', (event, data) => { 98 ipcRenderer.on('autoUpdate', (event, data) => {
99 if (data.available) { 99 if (data.available) {
100 this.updateStatus = this.updateStatusTypes.AVAILABLE; 100 this.updateStatus = this.updateStatusTypes.AVAILABLE;
101
102 if (isMac) {
103 app.dock.bounce();
104 }
101 } 105 }
102 106
103 if (data.available !== undefined && !data.available) { 107 if (data.available !== undefined && !data.available) {