Skip to content

Commit 2971e3a

Browse files
author
Benjamin Pasero
committed
progress - preserve 150ms default delay for window progress (microsoft#95615)
1 parent 5487172 commit 2971e3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/services/progress/browser/progressService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class ProgressService extends Disposable implements IProgressService {
7575
// Window progress without command can be shown as silent notification
7676
// which will first appear in the status bar and can then be brought to
7777
// the front when clicking.
78-
return this.withNotificationProgress({ ...options, silent: true, location: ProgressLocation.Notification }, task, onDidCancel);
78+
return this.withNotificationProgress({ delay: 150 /* default for ProgressLocation.Window */, ...options, silent: true, location: ProgressLocation.Notification }, task, onDidCancel);
7979
case ProgressLocation.Explorer:
8080
return this.withViewletProgress('workbench.view.explorer', task, { ...options, location });
8181
case ProgressLocation.Scm:

0 commit comments

Comments
 (0)