diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 75a92263..b697045a 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -440,6 +440,7 @@ void SourceView::RenderSymbolView( const Worker& worker ) } inlineList++; } + pdqsort_branchless( symInline.begin(), symInline.end(), []( const auto& l, const auto& r ) { return l.second == r.second ? l.first < r.first : l.second > r.second; } ); ImGui::Columns( 3 ); static bool widthSet = false;