Skip to content

Commit

Permalink
Always show preparing message unless mode is 'never' (#1328)
Browse files Browse the repository at this point in the history
Issue: #1323
  • Loading branch information
plemarquand authored Jan 23, 2025
1 parent 5f608b0 commit fa4d12c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ui/SwiftBuildStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ export class SwiftBuildStatus implements vscode.Disposable {

// Begin by showing a message that the build is preparing, as there is sometimes
// a delay before building starts, especially in large projects.
// The status bar has a message immediately, so only show this when using a
// notification to show progress.
if (!started && (showBuildStatus === "notification" || showBuildStatus === "progress")) {
if (!started && showBuildStatus !== "never") {
update(`${name}: Preparing...`);
}

Expand Down

0 comments on commit fa4d12c

Please sign in to comment.