mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +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();
|
ImGui::Indent();
|
||||||
for( auto& iv : inSymList )
|
for( auto& iv : inSymList )
|
||||||
{
|
{
|
||||||
ImGui::TableNextRow();
|
|
||||||
ImGui::TableNextColumn();
|
|
||||||
const auto cnt = accumulationMode == AccumulationMode::SelfOnly ? iv.excl : iv.incl;
|
const auto cnt = accumulationMode == AccumulationMode::SelfOnly ? iv.excl : iv.incl;
|
||||||
if( cnt > 0 || showAll )
|
if( cnt > 0 || showAll )
|
||||||
{
|
{
|
||||||
|
ImGui::TableNextRow();
|
||||||
|
ImGui::TableNextColumn();
|
||||||
auto sit = symMap.find( iv.symAddr );
|
auto sit = symMap.find( iv.symAddr );
|
||||||
assert( sit != symMap.end() );
|
assert( sit != symMap.end() );
|
||||||
name = m_worker.GetString( sit->second.name );
|
name = m_worker.GetString( sit->second.name );
|
||||||
|
Loading…
Reference in New Issue
Block a user