Skip to content

Commit 4b859c2

Browse files
author
Akos Kitta
committed
Added a workaround for a memory leak.
eclipse-theia/theia#7008 Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 parent d53d474 commit 4b859c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-ide-extension/src/browser/tool-output/client-service-impl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class ToolOutputServiceClientImpl implements ToolOutputServiceClient {
1313
protected readonly outputContribution: OutputContribution;
1414

1515
onNewOutput(tool: string, chunk: string): void {
16-
this.outputContribution.openView({ activate: true }).then(() => {
16+
this.outputContribution.openView({ reveal: true }).then(() => {
1717
const channel = this.outputChannelManager.getChannel(`Arduino: ${tool}`);
1818
channel.setVisibility(true);
1919
channel.append(chunk);

0 commit comments

Comments
 (0)