Skip to content

Commit

Permalink
Make key opt-in
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhao271 committed Nov 15, 2021
1 parent f04bfda commit 7683ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ function configureCommandlineSwitchesSync(cliArgs) {
break;

case 'enable-render-process-reuse':
if (argvValue === false) {
app.allowRendererProcessReuse = false;
} else {
if (argvValue === true) {
app.allowRendererProcessReuse = true;
} else {
app.allowRendererProcessReuse = false;
}
break;
}
Expand Down

0 comments on commit 7683ee3

Please sign in to comment.