diff options
| -rw-r--r-- | gui/packages/desktop/src/main/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/packages/desktop/src/main/index.js b/gui/packages/desktop/src/main/index.js index 46806ae767..22e3af217c 100644 --- a/gui/packages/desktop/src/main/index.js +++ b/gui/packages/desktop/src/main/index.js @@ -315,7 +315,7 @@ const ApplicationMain = { webPreferences: { // prevents renderer process code from not running when window is hidden backgroundThrottling: false, - // Enable experimental features + // enable blur effect blinkFeatures: 'CSSBackdropFilter', }, }; @@ -414,6 +414,9 @@ const ApplicationMain = { const tray = new Tray(nativeImage.createEmpty()); tray.setToolTip('Mullvad VPN'); + // disable double click on tray icon since it causes weird delay + tray.setIgnoreDoubleClickEvents(true); + // disable icon highlight on macOS if (process.platform === 'darwin') { tray.setHighlightMode('never'); |
