Browse Source

Fix inverted condition.

pull/512/head
Daniel Grunwald 11 years ago
parent
commit
9256ed4d39
  1. 2
      src/AddIns/Debugger/Debugger.AddIn/Service/WindowsDebugger.cs

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

@ -633,7 +633,7 @@ namespace ICSharpCode.SharpDevelop.Services @@ -633,7 +633,7 @@ namespace ICSharpCode.SharpDevelop.Services
return;
if (CurrentStackFrame == null)
return;
if (e.InDocument)
if (!e.InDocument)
return;
var resolveResult = SD.ParserService.Resolve(e.Editor, e.LogicalPosition, CurrentStackFrame.AppDomain.Compilation);
if (resolveResult == null)

Loading…
Cancel
Save