Skip to content

Commit fa4d12c

Browse files
authored
Always show preparing message unless mode is 'never' (#1328)
Issue: #1323
1 parent 5f608b0 commit fa4d12c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ui/SwiftBuildStatus.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,7 @@ export class SwiftBuildStatus implements vscode.Disposable {
141141

142142
// Begin by showing a message that the build is preparing, as there is sometimes
143143
// 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")) {
144+
if (!started && showBuildStatus !== "never") {
147145
update(`${name}: Preparing...`);
148146
}
149147

0 commit comments

Comments
 (0)