We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f608b0 commit fa4d12cCopy full SHA for fa4d12c
src/ui/SwiftBuildStatus.ts
@@ -141,9 +141,7 @@ export class SwiftBuildStatus implements vscode.Disposable {
141
142
// Begin by showing a message that the build is preparing, as there is sometimes
143
// a delay before building starts, especially in large projects.
144
- // The status bar has a message immediately, so only show this when using a
145
- // notification to show progress.
146
- if (!started && (showBuildStatus === "notification" || showBuildStatus === "progress")) {
+ if (!started && showBuildStatus !== "never") {
147
update(`${name}: Preparing...`);
148
}
149
0 commit comments