aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Rémi Weislinger <closingin@protonmail.com>2018-02-15 13:38:25 -0500
committerLibravatar Rémi Weislinger <closingin@protonmail.com>2018-02-15 13:38:25 -0500
commit75b178b1ffa690d9b0dba2eb1121d41294e415e7 (patch)
treeacaad19f10bcb4e25f0132cb8a227092beb1a3f6 /src/stores
parentfeat(Windows): Add more app icon resolutions (@Stanzilla) (diff)
downloadferdium-app-75b178b1ffa690d9b0dba2eb1121d41294e415e7.tar.gz
ferdium-app-75b178b1ffa690d9b0dba2eb1121d41294e415e7.tar.zst
ferdium-app-75b178b1ffa690d9b0dba2eb1121d41294e415e7.zip
Fix bug with notifications click changing window's state
Issue #645
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 06c43f83f..e70ad16ef 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -181,7 +181,7 @@ export default class AppStore extends Store {
181 181
182 if (!isMac) { 182 if (!isMac) {
183 const mainWindow = remote.getCurrentWindow(); 183 const mainWindow = remote.getCurrentWindow();
184 mainWindow.restore(); 184 mainWindow.show();
185 } 185 }
186 } 186 }
187 }; 187 };