Skip to content

Commit a4f4f3a

Browse files
committed
reinstates parameter quick-info during SCP handling
1 parent 811060b commit a4f4f3a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rubberduck.Core/AutoComplete/SelfClosingPairs/SelfClosingPairHandler.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public override bool Handle(AutoCompleteEventArgs e, AutoCompleteSettings settin
9191
// 1-based selection span in the code pane starts at column 1 but really encompasses the entire line.
9292
var snippetPosition = new Selection(result.SnippetPosition.StartLine, 1, result.SnippetPosition.EndLine, 1);
9393
result = new CodeString(result.Code, result.CaretPosition, snippetPosition);
94-
94+
_scpService.ShowIntellisense();
9595
e.Handled = true;
9696
return true;
9797
}
@@ -143,7 +143,6 @@ private bool HandleInternal(AutoCompleteEventArgs e, CodeString original, SelfCl
143143
{
144144
e.Handled = true;
145145
result = reprettified;
146-
_scpService.ShowIntellisense();
147146
return true;
148147
}
149148

0 commit comments

Comments
 (0)