diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs index a9a0f1f8ef..f25bc14834 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs @@ -168,7 +168,7 @@ namespace Debugger public void Terminate() { // Resume stoped tread - if (this.IsRunning) { + if (this.IsPaused) { // We might get more callbacks so we should maintain consistent sate this.Continue(); // TODO: Remove this... }