Use caret right to indicate inlined frames, instead of "--".

This commit is contained in:
Bartosz Taudul 2020-02-23 16:08:00 +01:00
parent 7f5e23f2ac
commit 37d9a20b4a

View File

@ -9619,7 +9619,11 @@ void View::DrawFindZone()
}
else
{
#ifdef TRACY_EXTENDED_FONT
TextDisabledUnformatted( ICON_FA_CARET_RIGHT );
#else
TextDisabledUnformatted( "--" );
#endif
}
ImGui::SameLine();
ImGui::TextUnformatted( txt );
@ -14387,7 +14391,11 @@ void View::CallstackTooltip( uint32_t idx )
}
else
{
#ifdef TRACY_EXTENDED_FONT
TextDisabledUnformatted( ICON_FA_CARET_RIGHT );
#else
TextDisabledUnformatted( "--" );
#endif
}
ImGui::SameLine();
if( txt[0] == '[' )