mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Fix vertical spacing in inline symbols list.
This commit is contained in:
parent
28ae970887
commit
99f2d0e059
@ -13496,11 +13496,11 @@ void View::DrawSamplesStatistics(Vector<SymList>& data, int64_t timeRange, Accum
|
||||
ImGui::Indent();
|
||||
for( auto& iv : inSymList )
|
||||
{
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableNextColumn();
|
||||
const auto cnt = accumulationMode == AccumulationMode::SelfOnly ? iv.excl : iv.incl;
|
||||
if( cnt > 0 || showAll )
|
||||
{
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableNextColumn();
|
||||
auto sit = symMap.find( iv.symAddr );
|
||||
assert( sit != symMap.end() );
|
||||
name = m_worker.GetString( sit->second.name );
|
||||
|
Loading…
Reference in New Issue
Block a user