rename ProgressLocation.Scm to ProgressLocation.SourceControl, #18066

This commit is contained in:
Johannes Rieken
2017-04-25 11:45:27 +02:00
parent c5d2d86a70
commit 2d64239944
5 changed files with 6 additions and 6 deletions

View File

@@ -531,7 +531,7 @@ export class Model implements Disposable {
};
return shouldShowProgress(operation)
? window.withProgress({ location: ProgressLocation.Scm }, run)
? window.withProgress({ location: ProgressLocation.SourceControl }, run)
: run();
}