diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | gui/src/main/index.ts | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c51b55e5a..43358e702a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ Line wrap the file at 100 chars. Th ### Changed - List devices on an account sorted by creation date, oldest to newest, instead of alphabetically. +- Display consistent colors regardless of monitor color profile. #### Android - Lowered default MTU to 1280 on Android. diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts index dce30ff2b0..83b76292c4 100644 --- a/gui/src/main/index.ts +++ b/gui/src/main/index.ts @@ -275,6 +275,9 @@ class ApplicationMain { app.commandLine.appendSwitch('wm-window-animations-disabled'); } + // Display correct colors regardless of monitor color profile. + app.commandLine.appendSwitch('force-color-profile', 'srgb'); + this.overrideAppPaths(); // This ensures that only a single instance is running at the same time, but also exits if |
