From f3bac060a6f63f86bd7e5328bb88b0ae6c421ac7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 25 Oct 2017 23:45:53 +0200 Subject: [PATCH] Same thing for contended locks. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 25d4da37..19de60c9 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2265,7 +2265,7 @@ int View::DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos, nextState = State::Nothing; break; } - if( (*next)->waitList != (*vbegin)->waitList ) + if( (*next)->waitList != (*vbegin)->waitList || (*next)->lockCount != (*vbegin)->lockCount ) { break; }