From 1e6c8c82f3d19449a811e41bc6fe4eb5a2550148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Srbeck=C3=BD?= Date: Sat, 21 Oct 2006 22:27:41 +0000 Subject: [PATCH] Fixed SD2-1151 (correction) git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1922 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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... }