Skip to content

Commit 1fc86af

Browse files
Fixed logical error
1 parent 22d750a commit 1fc86af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/toolkit/Community.VisualStudio.Toolkit.Shared/ErrorList/TableEntriesSnapshot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public override bool TryGetValue(int index, string columnName, out object? conte
4242

4343
if (columnName == StandardTableKeyNames.PriorityImage || columnName == StandardTableKeyNames.ErrorSeverityImage)
4444
{
45-
if (_errors[index].Icon.Guid == Guid.Empty)
45+
if (_errors[index].Icon.Guid != Guid.Empty)
4646
{
4747
content = _errors[index].Icon;
4848
return true;

0 commit comments

Comments
 (0)