Draw smaller "inline" index in callstacks.

This commit is contained in:
Bartosz Taudul 2021-11-20 01:36:05 +01:00
parent b8766ad5d7
commit a075323a80
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -14052,7 +14052,9 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton )
} }
else else
{ {
if( m_smallFont ) ImGui::PushFont( m_smallFont );
TextDisabledUnformatted( "inline" ); TextDisabledUnformatted( "inline" );
if( m_smallFont ) ImGui::PopFont();
} }
ImGui::TableNextColumn(); ImGui::TableNextColumn();
{ {
@ -16187,7 +16189,9 @@ void View::DrawSampleParents()
} }
else else
{ {
if( m_smallFont ) ImGui::PushFont( m_smallFont );
TextDisabledUnformatted( "inline" ); TextDisabledUnformatted( "inline" );
if( m_smallFont ) ImGui::PopFont();
} }
ImGui::TableNextColumn(); ImGui::TableNextColumn();
{ {