diff --git a/src/VisualStudio/Core/Def/StackTraceExplorer/IgnoredFrameViewModel.cs b/src/VisualStudio/Core/Def/StackTraceExplorer/IgnoredFrameViewModel.cs index 9ea417bfa8bea..0a5f0330bf12d 100644 --- a/src/VisualStudio/Core/Def/StackTraceExplorer/IgnoredFrameViewModel.cs +++ b/src/VisualStudio/Core/Def/StackTraceExplorer/IgnoredFrameViewModel.cs @@ -25,7 +25,7 @@ public IgnoredFrameViewModel(IgnoredFrame frame, IClassificationFormatMap format protected override IEnumerable CreateInlines() { - var run = MakeClassifiedRun(ClassificationTypeNames.ExcludedCode, _frame.ToString()); + var run = MakeClassifiedRun(ClassificationTypeNames.Comment, _frame.ToString()); yield return run; } }