fix: Disable hardware acceleration on Windows, it causes screenshare to flicker

This commit is contained in:
Jaya Allamsetty 2020-12-02 17:50:56 -05:00 committed by GitHub
parent 6d4f997c87
commit f348152242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,11 @@ const showDevTools = Boolean(process.env.SHOW_DEV_TOOLS) || (process.argv.indexO
// We need this because of https://github.com/electron/electron/issues/18214
app.commandLine.appendSwitch('disable-site-isolation-trials');
// We need to disable hardware acceleration on Windows because its causes the screenshare to flicker.
if (process.platform === 'win32') {
app.commandLine.appendSwitch('disable-gpu');
}
// Needed until robot.js is fixed: https://github.com/octalmage/robotjs/issues/580
app.allowRendererProcessReuse = false;