Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 5b516eb

Browse files
committed
Add assembly name to class search result labels
1 parent 601567f commit 5b516eb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ObjectExplorer/ObjectSearch.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,10 @@ public void SetCell(ButtonCell cell, int index)
131131
{
132132
string text;
133133
if (m_context == SearchContext.Class)
134-
text = SignatureHighlighter.Parse(currentResults[index] as Type, true);
134+
{
135+
var type = currentResults[index] as Type;
136+
text = $"{SignatureHighlighter.Parse(type, true)} <color=grey><i>({type.Assembly.GetName().Name})</i></color>";
137+
}
135138
else
136139
text = ToStringUtility.ToStringWithType(currentResults[index], currentResults[index]?.GetActualType());
137140

0 commit comments

Comments
 (0)