Skip to content

Commit 95b96e3

Browse files
authored
Stack Trace Explorer - Change color for text that is unlinked (#81306)
Changed from Excluded Code to Comment. Could also be Text, but that coincides with some of the text in the stack trace so it may look confusing. <img width="1695" height="487" alt="image" src="https://github.com/user-attachments/assets/c058ff97-e621-4350-a568-1f0104573005" /> versus <img width="1715" height="502" alt="image" src="https://github.com/user-attachments/assets/40f5c543-8502-4f66-a0b1-3e0c424fc557" />
1 parent 9664bcd commit 95b96e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VisualStudio/Core/Def/StackTraceExplorer/IgnoredFrameViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public IgnoredFrameViewModel(IgnoredFrame frame, IClassificationFormatMap format
2525

2626
protected override IEnumerable<Inline> CreateInlines()
2727
{
28-
var run = MakeClassifiedRun(ClassificationTypeNames.ExcludedCode, _frame.ToString());
28+
var run = MakeClassifiedRun(ClassificationTypeNames.Comment, _frame.ToString());
2929
yield return run;
3030
}
3131
}

0 commit comments

Comments
 (0)