diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-08-02 14:33:43 -0300 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-08-08 08:12:47 -0300 |
| commit | cce1eca23e8b847aac5e09c5fd732739931f84b2 (patch) | |
| tree | 2e8ccfc68acaac68d50f3d86c2e7978afe74ee16 | |
| parent | b7fccae454943a113022fe4403ca9a6920ffec13 (diff) | |
| download | mullvadvpn-cce1eca23e8b847aac5e09c5fd732739931f84b2.tar.xz mullvadvpn-cce1eca23e8b847aac5e09c5fd732739931f84b2.zip | |
Set application user model ID on Windows
| -rw-r--r-- | app/main.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/main.js b/app/main.js index 987fa47463..ef4e2e9e24 100644 --- a/app/main.js +++ b/app/main.js @@ -33,6 +33,10 @@ const ApplicationMain = { log.info(`Running version ${app.getVersion()}`); + if (process.platform === 'win32') { + app.setAppUserModelId('net.mullvad.vpn'); + } + app.on('activate', () => this._onActivate()); app.on('ready', () => this._onReady()); app.on('window-all-closed', () => app.quit()); |
