aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 13:59:59 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 13:59:59 +0100
commit4d5ceafd3d7906c4306c9b41ab0299520c129d9b (patch)
treefe4bee9a91003277b25295aca299cd88430d26b7 /src/index.js
parentMerge branch 'develop' into feature/dark-theme (diff)
parentfix(Windows): Remove minimize setting check on close event (#1038) @imaginarny (diff)
downloadferdium-app-4d5ceafd3d7906c4306c9b41ab0299520c129d9b.tar.gz
ferdium-app-4d5ceafd3d7906c4306c9b41ab0299520c129d9b.tar.zst
ferdium-app-4d5ceafd3d7906c4306c9b41ab0299520c129d9b.zip
Merge branch 'develop' into feature/dark-theme
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 1a5704736..65f18bb55 100644
--- a/src/index.js
+++ b/src/index.js
@@ -120,7 +120,7 @@ const createWindow = () => {
120 mainWindow.hide(); 120 mainWindow.hide();
121 } 121 }
122 122
123 if (isWindows && settings.get('minimizeToSystemTray')) { 123 if (isWindows) {
124 mainWindow.setSkipTaskbar(true); 124 mainWindow.setSkipTaskbar(true);
125 } 125 }
126 } else { 126 } else {