Browse Source

Minor fix

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1413 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts 2.0-RC1
David Srbecký 19 years ago
parent
commit
1398485287
  1. 4
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs

4
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs

@ -146,7 +146,9 @@ namespace Debugger
OnEvalStarted(new EvalEventArgs(this)); OnEvalStarted(new EvalEventArgs(this));
// Stepper needs to be reset after evaluation // Stepper needs to be reset after evaluation
targetThread.LastFunction.AddTrackingStepper(); if (targetThread.LastFunction != null) { // TODO: Investigate
targetThread.LastFunction.AddTrackingStepper();
}
evalState = EvalState.Evaluating; evalState = EvalState.Evaluating;
return true; return true;

Loading…
Cancel
Save