Skip to content

Commit

Permalink
Added "generated" property to textview
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Oct 16, 2015
1 parent 50f29fd commit b0556cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
- [ ] File globbing pattern support (#49)
- [ ] Default settings for source maps (#120)
- [ ] Run compilers from a node server
- [ ] Refresh browsers automatically after compile
- [x] Clean Error List on _Clean_
- [x] Use new VS2015 Error List API
- [x] MSBuild: Changed build ordering (#124)
Expand Down
1 change: 1 addition & 0 deletions src/WebCompilerVsix/Adornments/AdornmentProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ private void CreateAdornments(ITextDocument document, IWpfTextView textView)
if (config.GetAbsoluteOutputFile().FullName.Equals(normalizedFilePath, StringComparison.OrdinalIgnoreCase))
{
GeneratedAdornment generated = new GeneratedAdornment(textView, _isVisible, _initOpacity);
textView.Properties.AddProperty("generated", true);
break;
}
}
Expand Down

0 comments on commit b0556cb

Please sign in to comment.