summaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-03-18 17:17:17 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-03-18 17:17:17 +0000
commit62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f (patch)
tree8ff049fe2db894c83ca4d51b5e05fcf8d1ecc4c2 /app
parent58de126263cce9c49fad4c506c59e9980793c554 (diff)
downloadmullvadvpn-62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f.tar.xz
mullvadvpn-62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f.zip
Disable selection color of tray icon
Diffstat (limited to 'app')
-rw-r--r--app/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.js b/app/main.js
index 753ac685a9..2534cfa089 100644
--- a/app/main.js
+++ b/app/main.js
@@ -157,7 +157,7 @@ const showWindow = () => {
const createTray = () => {
tray = new Tray(nativeImage.createEmpty());
tray.on('click', toggleWindow);
- tray.setHighlightMode('selection');
+ tray.setHighlightMode('never');
trayIconManager = new TrayIconManager(tray);
};