From 76e0ab135b2c6513c7af3d5d1fb8063d8da66cd0 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 11 Jan 2026 22:32:25 +0100 Subject: [PATCH] Keep window redrawing while waiting for message reply. --- profiler/src/profiler/TracyView_Callstack.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/profiler/TracyView_Callstack.cpp b/profiler/src/profiler/TracyView_Callstack.cpp index 0765e49b..e49f09e3 100644 --- a/profiler/src/profiler/TracyView_Callstack.cpp +++ b/profiler/src/profiler/TracyView_Callstack.cpp @@ -245,6 +245,7 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton ) { ImGui::SameLine(); ImGui::TextUnformatted( it->second.c_str() ); + if( strcmp( it->second.c_str(), "…" ) == 0 ) m_wasActive = true; if( clicked ) it->second = "…"; } else if( clicked )