diff options
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/main/index.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/packages/mullvad-vpn/src/main/index.ts b/desktop/packages/mullvad-vpn/src/main/index.ts index eb5ca1ef70..c2cc02eb10 100644 --- a/desktop/packages/mullvad-vpn/src/main/index.ts +++ b/desktop/packages/mullvad-vpn/src/main/index.ts @@ -156,6 +156,10 @@ class ApplicationMain app.commandLine.appendSwitch('wm-window-animations-disabled'); } + if (process.platform === 'linux') { + app.commandLine.appendSwitch('gtk-version', '3'); + } + // Display correct colors regardless of monitor color profile. app.commandLine.appendSwitch('force-color-profile', 'srgb'); |
