diff --git a/src/apps/debugger/model/Thread.cpp b/src/apps/debugger/model/Thread.cpp index e6fcb70951..c6692f89e5 100644 --- a/src/apps/debugger/model/Thread.cpp +++ b/src/apps/debugger/model/Thread.cpp @@ -57,7 +57,7 @@ Thread::SetName(const BString& name) void Thread::SetState(uint32 state, uint32 reason, const BString& info) { - if (state == fState) + if (state == fState && reason == fStoppedReason) return; fState = state;