Skip to content

Commit a7788c7

Browse files
committed
Works for right-clicks on "Implements IClass..."
1 parent 7b5f67b commit a7788c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetailCoder.VBE/UI/RefactorMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private void FindAllImplementations()
234234
{
235235
foreach (var item in reference)
236236
{
237-
if (item.Selection.Contains(selection.Selection))
237+
if (item.QualifiedModuleName == selection.QualifiedName && item.Selection.Contains(selection.Selection))
238238
{
239239
FindAllImplementations(item.Declaration);
240240
return;

0 commit comments

Comments
 (0)