Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-11-27 20:05:05 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-11-27 20:05:05 +0300
commit05f9c74170fc67cae390f3d9531e9965e5f2811d (patch)
tree34ba5b05fc52d995f7ade5142a752eab816a13d8
parent582fcd55386bc63537c7a4fdf03c0138459db2f8 (diff)
Don't include inlines when separate inlines are enabled.
-rw-r--r--server/TracyView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracyView.cpp b/server/TracyView.cpp
index bad7df46..bd9bc6c2 100644
--- a/server/TracyView.cpp
+++ b/server/TracyView.cpp
@@ -13615,7 +13615,7 @@ void View::DrawSamplesStatistics(Vector<SymList>& data, int64_t timeRange, Accum
if( isKernel ) ImGui::PushStyleColor( ImGuiCol_Text, 0xFF8888FF );
const auto clicked = ImGui::Selectable( name, m_sampleParents.withInlines && m_sampleParents.symAddr == v.symAddr, ImGuiSelectableFlags_SpanAllColumns );
if( isKernel ) ImGui::PopStyleColor();
- if( clicked ) ShowSampleParents( v.symAddr, true );
+ if( clicked ) ShowSampleParents( v.symAddr, !m_statSeparateInlines );
ImGui::PopID();
}
if( parentName )