diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-18 17:17:17 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-18 17:17:17 +0000 |
| commit | 62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f (patch) | |
| tree | 8ff049fe2db894c83ca4d51b5e05fcf8d1ecc4c2 /app | |
| parent | 58de126263cce9c49fad4c506c59e9980793c554 (diff) | |
| download | mullvadvpn-62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f.tar.xz mullvadvpn-62b3e2784b8aab2c5a13b3eb0f18f2a158e6bb7f.zip | |
Disable selection color of tray icon
Diffstat (limited to 'app')
| -rw-r--r-- | app/main.js | 2 |
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); }; |
