aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-10-19 15:23:02 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-10-19 15:23:02 +0200
commit9825e2aabceea0c1bc987abb6834051bfc99ba54 (patch)
treef7a1e565ca813b71e73edde52a27d975b14e0a1e /src/index.js
parentAdd option to disable system tray icon (diff)
downloadferdium-app-9825e2aabceea0c1bc987abb6834051bfc99ba54.tar.gz
ferdium-app-9825e2aabceea0c1bc987abb6834051bfc99ba54.tar.zst
ferdium-app-9825e2aabceea0c1bc987abb6834051bfc99ba54.zip
Display system tray icon when minimizing to system tray
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index 6f45d95b8..e7fa7da6d 100644
--- a/src/index.js
+++ b/src/index.js
@@ -90,6 +90,7 @@ const createWindow = async () => {
90 90
91 if (settings.get('minimizeToSystemTray')) { 91 if (settings.get('minimizeToSystemTray')) {
92 mainWindow.setSkipTaskbar(true); 92 mainWindow.setSkipTaskbar(true);
93 trayIcon.show();
93 } 94 }
94 }); 95 });
95 96