Skip to content

Commit

Permalink
Don't crash when starting on Windows with UI scalling set to 150%. #96
Browse files Browse the repository at this point in the history
This fix works but makes no sense what so ever.
  • Loading branch information
sedwards2009 committed May 25, 2018
1 parent ef95662 commit 64716fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extraterm/src/main_process/Main.ts
Expand Up @@ -317,7 +317,8 @@ function setScaleFactor(originalFactorArg?: string): {restartNeeded: boolean, cu
cwd: process.cwd(),
detached: true,
env: process.env,
stdio: [process.stdin, process.stdout, process.stderr]});
stdio: "inherit"
});

_log.info("Restarting with scale factor ", scaleFactor);
app.exit(0);
Expand Down

0 comments on commit 64716fc

Please sign in to comment.