Skip to content

Commit

Permalink
Fix #18: No output on launch, when watchOnLaunch is true
Browse files Browse the repository at this point in the history
Fix #18: On launch there is no output, nor any `Live SASS Compile` ouput selection, when the setting `watchOnLaunch` is `true`
  • Loading branch information
glenn2223 committed Jan 20, 2021
1 parent 91f8e33 commit f83d11d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/appModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ export class AppModel {

this._logger = new ErrorLogger(workplaceState);

if (this.isWatching)
OutputWindow.Show(
"Watching...",
null,
Helper.getConfigSettings<boolean>("showOutputWindow")
);

StatusBarUi.init(this.isWatching);
}

Expand Down

0 comments on commit f83d11d

Please sign in to comment.