Skip to content

Commit 4fe9cb6

Browse files
committed
chore: do not focus when showing output channel
1 parent 151d5c3 commit 4fe9cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pynsist.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export async function generate(runMakensis: boolean): Promise<void> {
122122
}
123123
}
124124
} else {
125-
channel.show(true);
125+
channel.show();
126126
if (showNotifications)
127127
window.showErrorMessage(
128128
"Something went wrong. See the output for details.",

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function clearOutput(channel: OutputChannel): Promise<void> {
1212

1313
channel.clear();
1414
if (alwaysShowOutput === true) {
15-
channel.show(true);
15+
channel.show();
1616
}
1717
}
1818

0 commit comments

Comments
 (0)