diff options
| author | Oskar <oskar@mullvad.net> | 2025-06-26 14:48:36 +0200 |
|---|---|---|
| committer | Oskar <oskar@mullvad.net> | 2025-06-30 08:56:31 +0200 |
| commit | 5acef5de807e8368f43485ea57c279099f368ece (patch) | |
| tree | 367a17b3ac922efb8243292bcb968fb477aff3f7 | |
| parent | ef21bd17e43f076f8d6bf6c2c6efde6c043bcead (diff) | |
| download | mullvadvpn-5acef5de807e8368f43485ea57c279099f368ece.tar.xz mullvadvpn-5acef5de807e8368f43485ea57c279099f368ece.zip | |
Add gtk-version command line switch
| -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'); |
