mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Use caret right to indicate inlined frames, instead of "--".
This commit is contained in:
parent
7f5e23f2ac
commit
37d9a20b4a
@ -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] == '[' )
|
||||
|
Loading…
Reference in New Issue
Block a user