From e3165c333b910fc16eb358b405c6df435404480c Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Fri, 16 Jul 2021 16:13:21 -0700 Subject: [PATCH] Fixing unbalanced tree pop in grouped GPU zones. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 45d46af8..6782a28f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -8312,6 +8312,7 @@ void View::DrawGpuInfoWindow() { DrawGpuInfoChildren>( children, ztime ); } + ImGui::TreePop(); } } @@ -8533,7 +8534,6 @@ void View::DrawGpuInfoChildren( const V& children, int64_t ztime ) ImGui::NextColumn(); } ImGui::EndColumns(); - ImGui::TreePop(); } }