Skip to content

Commit 5e2c519

Browse files
committed
Fixes microsoft#60047: Running scripts with right click not giving feedback when it ends.
1 parent 2c93ec4 commit 5e2c519

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/api/electron-browser/mainThreadTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ namespace TaskPresentationOptionsDTO {
9191
}
9292
export function to(value: TaskPresentationOptionsDTO): PresentationOptions {
9393
if (value === void 0 || value === null) {
94-
return undefined;
94+
return { reveal: RevealKind.Always, echo: true, focus: false, panel: PanelKind.Shared, showReuseMessage: true };
9595
}
9696
return Objects.assign(Object.create(null), value);
9797
}

0 commit comments

Comments
 (0)