mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08: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
|
else
|
||||||
{
|
{
|
||||||
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
|
TextDisabledUnformatted( ICON_FA_CARET_RIGHT );
|
||||||
|
#else
|
||||||
TextDisabledUnformatted( "--" );
|
TextDisabledUnformatted( "--" );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::TextUnformatted( txt );
|
ImGui::TextUnformatted( txt );
|
||||||
@ -14387,7 +14391,11 @@ void View::CallstackTooltip( uint32_t idx )
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#ifdef TRACY_EXTENDED_FONT
|
||||||
|
TextDisabledUnformatted( ICON_FA_CARET_RIGHT );
|
||||||
|
#else
|
||||||
TextDisabledUnformatted( "--" );
|
TextDisabledUnformatted( "--" );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if( txt[0] == '[' )
|
if( txt[0] == '[' )
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user