diff --git a/server/TracyTimelineController.cpp b/server/TracyTimelineController.cpp index 5161fa29..a8ca0189 100644 --- a/server/TracyTimelineController.cpp +++ b/server/TracyTimelineController.cpp @@ -107,6 +107,14 @@ void TimelineController::End( double pxns, const ImVec2& wpos, bool hover, bool UpdateCenterItem(); } + for( auto& item : m_items ) + { + if( item->WantPreprocess() && item->IsVisible() ) + { + item->Preprocess(); + } + } + int yOffset = 0; for( auto& item : m_items )