From 4378694ffbe81231513686ebb02aa0c900017546 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 15 Mar 2017 14:48:35 -0700 Subject: [PATCH] Running scripts in the integrated console should not steal focus Fixes #556. --- src/session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.ts b/src/session.ts index f747338251..7e0de91c13 100644 --- a/src/session.ts +++ b/src/session.ts @@ -609,7 +609,7 @@ export class SessionManager { private showSessionConsole() { if (this.consoleTerminal) { - this.consoleTerminal.show(); + this.consoleTerminal.show(true); } }