Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 9256ed4

Browse files
committed
Fix inverted condition.
1 parent 3dbfb42 commit 9256ed4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AddIns/Debugger/Debugger.AddIn/Service/WindowsDebugger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ public override void HandleToolTipRequest(ToolTipRequestEventArgs e)
633633
return;
634634
if (CurrentStackFrame == null)
635635
return;
636-
if (e.InDocument)
636+
if (!e.InDocument)
637637
return;
638638
var resolveResult = SD.ParserService.Resolve(e.Editor, e.LogicalPosition, CurrentStackFrame.AppDomain.Compilation);
639639
if (resolveResult == null)

0 commit comments

Comments
 (0)